|
Site Pre-Compilation in ASP.NET 2.0
We have seen in ASP.NET 1.1 and earlier versions, when trying to load a page for the first time; it is taking so much time to load. But for the subsequent requests, it is not taking that much time. The reason is, when the first request is reached; there are lots of works to do at the server, like ASPX files would be parsed and converted to MSIL and the classes would be JITed to native code. For the subsequent request there will be a cached version of compiled code available.
|