Skip to main content

ASP.NET Dynamic Compilation

In ASP.NET Web Applications, When we request a page it must parse and compile the code of Web Application into one or more assemblies. When the code is compiled, it's translated into a language independent and CPU independent code, that's MSIL code.

When we create an ASP.NET page, actually creating the source code for a .NET class. We are creating a new instance of the System.Web.UI.Page class.The entire contents of an ASP.NET page, including all script and HTML content, are compiled into a .NET class.

When request an ASP.NET page, ASP.NET Framework checks for a .NET class that corresponds to that page. If a corresponding class does not exist, the Framework automatically compiles the page into a new class and stores the compiled class (the assembly) in the Temporary ASP.NET Files folder.

The Temporary ASP.NET files folder located at :

\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files

The next time anyone requests the same page in the future, the page is not compiled again. The previously compiled class is executed, and the results are returned to the browser. Even if we unplug our web server, and start up web server again after some years, the next time someone requests the same page, the page does not need to be recompiled. The compiled class is preserved in the Temporary ASP.NET Files folder until the source code of application is modified. When the class is added to the Temporary ASP.NET Files folder, a file dependency is created between the class and the original ASP.NET page. If the ASP.NET page is modified in any way, the  corresponding .NET class is automatically deleted. The next time someone requests the page, the Framework automatically compiles the modified page source into a
new .NET class. This process is called Dynamic Compilation.

The Dynamic Compilation enables ASP.NET applications to support thousands of simultaneous users. Unlike an ASP Classic page, for example, an ASP.NET page does not need to be parsed and compiled every time it is requested. An ASP.NET page is compiled only when an application is modified.

Happy Programming........

Comments

Popular posts from this blog

Virtual machines vs. Containers

One of the questions that often comes up to anybody who's in the cloud space is, what are the differences between virtual machines and container? When should use one versus the other? Unfortunately the answer is not so simple clear-cut. We can't say you should always use containers or always use virtual machines. But, there are some things to keep in mind. There are certain kinds of applications which benefit from running in containers or using micro services in general. Microservices means taking an application and decomposing it into smaller parts. This is really good if you need to build a web scale application and you need to have the ability to turn up different dials of performance somewhat independent of each other. For example, take the middleware piece or the front end or the database piece and you need to scale them individually. The other benefit of containers is a consistency between the development environment and the production environment where you can take thing...

Multiplication Table in SQL Server

Multiplication Table in SQL Server This query gives the multiplication table from 1 to 10. DECLARE @A INT,                   @B INT,                   @C INT,                   @D VARCHAR (100)                   SELECT @A=1                  PRINT ' MULTIPLICATION TABLE 1-10' /****************************************/ /* Created By : Loganathan V */ /* Created On: 20-Sep-2010, Monday */ /* Purpose : Multiplication Table */ /* How to : RUN THE QUERY */ /****************************************/ WHILE (@A<=10) BEGIN         ...

Date Conversion formats in SQL Server

SQL Server supports different options to format Date/Time string.   Date Convert Format Result CONVERT(VARCHAR(50), GETDATE(), 100) Oct 10 2018  4:28AM CONVERT(VARCHAR(50), GETDATE(), 101) 10/10/2018 CONVERT(VARCHAR(50), GETDATE(), 102) 2018.10.10 CONVERT(VARCHAR(50), GETDATE(), 103) 10/10/2018 CONVERT(VARCHAR(50), GETDATE(), 104) 10.10.2018 CONVERT(VARCHAR(50), GETDATE(), 105) 10-10-2018 CONVERT(VARCHAR(50), GETDATE(), 106) 10 Oct 2018 CONVERT(VARCHAR(50), GETDATE(), 107) Oct 10, 2018 CONVERT(VARCHAR(50), GETDATE(), 108) 04:28:25 CONVERT(VARCHAR(50), GETDATE(), 109) Oct 10 2018  4:28:25:467AM CONVERT(VARCHAR(50), GETDATE(), 110) 10-10-2018 CONVERT(VARCHAR(50), GETDATE(), 111) 2018/10/10 CONVERT(VARCHAR(50), GETDATE(), 112) 20181010 CONVERT(VARCHAR(50), GETDATE(), 113) 10 Oct 2018 04:28:25:467 CONVERT(VARCHAR(50), GETDATE(), 114) 04:28:25...