Looking inside Global.asax application file in ASP.NET 3.5

What is Global.asax file: global.asax allows us to write event handlers that react to global events in web applications.
 
How it gets called: Global.asax files are never called directly by the user, rather they are called automatically in response to application events.
 
Point to remember about global.asax:
  1. They do not contain any HTML or ASP.NET tags.
  2. Contain methods with specific predefined names.
  3. They defined methods for a single class, application class.
  4. They are optional, but a web application has no more than one global.asax file.
How to add global.asax file:
 
Select Website >>Add New Item (or Project >> Add New Item if you're using the Visual Studio web project model) and choose the Global Application Class template.
 
global.asax1.gif
 
After you have added the global.asax file, you will find that Visual Studio has added Application Event handlers:
  1. <%@ Application Language="C#" %>  
  2. <script runat="server">  
  3.     void Application_Start(object sender, EventArgs e)  
  4.     {  
  5.         // Code that runs on application startup  
  6.     }  
  7.     void Application_End(object sender, EventArgs e)  
  8.     {  
  9.         //  Code that runs on application shutdown  
  10.     }  
  11.     void Application_Error(object sender, EventArgs e)  
  12.     {  
  13.         // Code that runs when an unhandled error occurs  
  14.     }  
  15.     void Session_Start(object sender, EventArgs e)  
  16.     {  
  17.         // Code that runs when a new session is started  
  18.     }  
  19.     void Session_End(object sender, EventArgs e)  
  20.     {  
  21.         // Code that runs when a session ends.  
  22.         // Note: The Session_End event is raised only when the sessionstate mode  
  23.         // is set to InProc in the Web.config file. If session mode is set to StateServer  
  24.         // or SQLServer, the event is not raised.  
  25.     }  
  26. </script>
Purpose of these application event handlers: To reach and handle any HttpApplication event.
 
If you want to know about HttpApplication events, see the MSDN article.
 
How these handler reach to HttpApplication Events
  1. global.asax file aren't attached in the same way as the event handlers for ordinary control events
  2. Way to attach them is to use the recognized method name, i.e. for event handler Application_OnEndRequest(), ASP.NET automatically calls this method when the HttpApplication.EndRequest event occurs.
What kind of application event global.asax can handle:
 
Global.asax can handle 2 types of applications events
 
1) Events that occurs only under specific conditions, i.e. request / response related events.
 
Order in which application event handler executes;
 
Order Application Events What they do
1 Application_BeginRequest() This method is called at the start of every request.
2 Application_AuthenticateRequest() This method is called just before authentication is performed. This is time and place where we can write our own authentication codes.
3 Application_AuthorizeRequest() After the user is authenticated (identified), it's time to determine the user's permissions. Here we can assign user with special privileges
4 Application_ResolveRequestCache() This method is commonly used in conjunction with output caching. 
5 Application_AcquireRequestState() This method is called just before session-specific information is retrieved for the client and used to populate the Session collection.
6 Application_PreRequestHandlerExecute() This method is called before the appropriate HTTP handler executes the request.
7 Application_PostRequestHandlerExecute() This method is called just after the request is handled.
8 Application_ReleaseRequestState() This method is called when the session-specific information is about to be serialized from the Session collection so that it's available for the next request.
9 Application_UpdateRequestCache() This method is called just before information is added to the output cache.
10 Application_EndRequest() This method is called at the end of the request, just before the objects are released and reclaimed. It's a suitable point for cleanup code.
 
2) Events that don't get fired with every request.
 
Order Application Events What they do
1 Application_Start() This method is invoked when the application first starts up and the application domain is created. This event handler is a useful place to provide application-wide initialization code. For example, at this point you might load and cache data that will not change throughout the lifetime of an application, such as navigation trees, static product catalogs, and so on.
2 Session_Start() This method is invoked each time a new session begins. This is often used to initialize user-specific information. 
3 Application_Error() This method is invoked whenever an unhandled exception occurs in the application.
4 Session_End() This method is invoked whenever the user's session ends. A session ends when your code explicitly releases it or when it times out after there have been no more requests received within a given timeout period (typically 20 minutes).
5 Application_End() This method is invoked just before an application ends. The end of an application can occur because IIS is being restarted or because the application is transitioning to a new application domain in response to updated files or the process recycling settings.
6 Application_Disposed() This method is invoked some time after the application has been shut down and the .NET garbage collector is about to reclaim the memory it occupies. This point is too late to perform critical cleanup, but you can use it as a last-ditch failsafe to verify that critical resources are released.
 
So now it's time to write codes under these event handlers.
 
Let's try for Application_Error
  1. protected void Application_Error(Object sender, EventArgs e)  
  2. {  
  3.     Response.Write("<font face=\"Tahoma\" size=\"2\" color=\"red\">");  
  4.     Response.Write("Oops! Looks like an error occurred!!<hr></font>");  
  5.     Response.Write("<font face=\"Arial\" size=\"2\">");  
  6.     Response.Write(Server.GetLastError().Message.ToString());  
  7.     Response.Write("<hr>" + Server.GetLastError().ToString());  
  8.     Server.ClearError();  
  9. }
So when any error happens, it get handled here with custom message.
 
global.asax2.gif 
 
Let's write code for Application_AuthenticateRequest , here we can write code our own authentication codes, because this method is called just before authentication is performed.
  1. protected void Application_AuthenticateRequest(Object sender, EventArgs e)  
  2. {  
  3.     Response.Write("Authenticating request...<br>");  
  4.     bool cookieFound = false;  
  5.     HttpCookie authCookie = null;  
  6.     HttpCookie cookie;  
  7.     for (int i = 0; i < Request.Cookies.Count; i++)  
  8.     {  
  9.         cookie = Request.Cookies[i];  
  10.         if (cookie.Name == FormsAuthentication.FormsCookieName)  
  11.         {  
  12.             cookieFound = true;  
  13.             authCookie = cookie;  
  14.             break;  
  15.         }  
  16.     }  
  17.     // If the cookie has been found, it means it has been issued from either  
  18.     // the windows authorisation site, is this forms auth site.  
  19.     if (cookieFound)  
  20.     {  
  21.         // Extract the roles from the cookie, and assign to our current principal, which is attached to the  
  22.         // HttpContext.  
  23.         FormsAuthenticationTicket winAuthTicket = FormsAuthentication.Decrypt(authCookie.Value);  
  24.         string[] roles = winAuthTicket.UserData.Split(';');  
  25.         FormsIdentity formsId = new FormsIdentity(winAuthTicket);  
  26.         System.Security.Principal.GenericPrincipal princ = new System.Security.Principal.GenericPrincipal(formsId, roles);  
  27.         HttpContext.Current.User = princ;  
  28.     }  
  29.     else  
  30.     {  
  31.         // No cookie found, we can redirect to the Windows auth site if we want, or let it pass through so  
  32.         // that the forms auth system redirects to the logon page for us.  
  33.     }  
  34. }
If there is no error, see below the order in which application events are handled.
 
global.asax3.gif 
 
As per your requirement, you can write your codes to use these application events handlers.
 
Cheers


Similar Articles