October 2010
Intermediate to advanced
1920 pages
73h 55m
English
Whenever you request an ASP.NET page, ASP.NET Framework assigns an instance of the HttpApplication class to the request. This class performs the following actions in the following order:
BeginRequest eventAuthenticateRequest eventAuthorizeRequest eventProcessRequest() method of the Page classEndRequest eventThis is not a complete list of HttpApplication events. There are a lot of them!
The entire page execution lifecycle happens during the fourth step. For example, the Page Init, Load, and PreRender events all happen when the Page class ProcessRequest() method is called. The HttpApplication object is responsible for raising application ...