What are the two main enhancements in ASP.NET involved in processing HTTP requests?
• When an ASP.NET page is requested for the first time, an instance of the Page class is dynamically compiled. In earlier versions of ASP, page code was interpreted for requests in the order that they appeared on the page. The common language runtime JIT compiles ASP.NET managed page code to the native code of the processing server at run time. • When the Page instance has been compiled for the first request, it is cached on the server. For each subsequent request for that page, the cached instance of the class is executed. After the initial request, the Page class is recompiled only when the original source for the page or one of its dependencies has changed.