Click here to Skip to main content
15,902,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
What are the process will take place in when a page is getting loaded in ASP.NET???

Regards
Balamurugan
Posted

1 solution

There are number of articles on web explaining it.

One of them: ASP.NET - Life Cycle[^]


The application life cycle has the following stages:
1. User makes a request for accessing application resource, a page. Browser sends this request to the web server.
2. A unified pipeline receives the first request and the following events take place:
a. An object of the ApplicationManager class is created.
b. An object of the HostingEnvironment class is created to provide information regarding the resources.
c. Top level items in the application are compiled.
Response objects are created . the application objects: HttpContext, HttpRequest and HttpResponse are created and initialized.
3.An instance of the HttpApplication object is created and assigned to the request. The request is processed by the HttpApplication class. Different events are raised by this class for processing the request.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900