ASP.NET Page Life Cycle
When a visitor first requests a .aspx page on your server, the server sends it to the HTTP Pipeline. The HTTP Pipeline handles the conversion of application code into HTML. The first class initiated is called HttpRuntime. This class finds a free HttpApplication object to start processing the request. The HttpApplication object then runs the […]
ASP.NET Page Life Cycle Read More »