|
The ASP.NET Application Life Cycle refers to all the stages that occur when an ASP.NET application is run. A brief outline is as given below:- When a request for an application arrives at a web server, it is passed to the ASP.NET to serve the request.
- ASP.NET creates the application domain for the application to isolate it from other applications.
- All the top-level items in the application are compiled including the App _ Code folder.
- ASP.NET core objects along with Request, response, and Context objects are created for the request.
- The application is started by creating the Http Application object and Session handling mechanism.
- Several events takes place to successfully manage the Request and Response of the application.
|