ASP.NET FRAMEWORK WITH C#
Life Cycle of ASP.NET Applications: The application life cycle has the following stages: · User makes a request for accessing application resource, a page. Browser sends this request to the web server. · A unified pipeline receives the first request and the following events take place: o An object of the class ApplicationManager is created. o An object of the class HostingEnvironment is created to provide information regarding the resources. o Top level items in the application are compiled. · Response objects are created. The application objects such as HttpContext, HttpRequest and HttpResponse are created and initialized. · An instance of the HttpApplication object is created and assigned to the request. · The request i...