The global.asax Application File : Global.asax « ASP.Net Instroduction « ASP.NET Tutorial






The global application class that's used by the global.asax file should always be stateless.

You can handle two types of events in the global.asax file:
Events that always occur for every request. 
Events that occur only under certain conditions.
BeginRequest() called at the start of every request, including requests for files that aren't web forms.
AuthenticateRequest() called before authentication is performed. 
AuthorizeRequest() assigns special privileges.
ResolveRequestCache() is used in conjunction with output caching. 
AcquireRequestState() is called before session-specific information is retrieved for the client.
PreRequestHandlerExecute() is called before the appropriate HTTP handler executes the request.
PostRequestHandlerExecute() is called just after the request is handled.
ReleaseRequestState() is called when the session-specific information is about to be serialized from the Session collection.
UpdateRequestCache() is called before information is added to the output cache. 
EndRequest() is called at the end of the request.








1.6.Global.asax
1.6.1.The global.asax Application File
1.6.2.Some events don't fire with every request:
1.6.3.Global application file. (C#)
1.6.4.Appication level event handlers in global.asax
1.6.5.Global.asax file can be used to track the number of page requests made for any page.
1.6.6.Application level action sequence
1.6.7.Static application variables
1.6.8.Override string GetVaryByCustomString in Global.asax (C#)
1.6.9.Override string GetVaryByCustomString in Global.asax (VB)
1.6.10.Log exception in Global.asax (C#)
1.6.11.Log exception in Global.asax (VB)