Umbraco using Global.asax to handle events before the Request Handler.
Sometimes you want to perform session checks, redirect or anything else that would probably be best suited to running before the requested page is rendered. That's a function of the Global.asax, it allows you to hook into the request pipeline of the application and perform a function.
To do this, you need to change the code within the Global.asax file so that we can reference a custom class with our extra code, we need to change it to the following:
<%@ Application Inherits="MyWebsite.Global" Language="C#" %>
Once this is done, you'll need somewhere for your new Global class, create a new cs file in the app_code folder or another folder if you compile your website into a dll, then add the following:
using System; using System.Web; using System.Web.SessionState; using Umbraco.Web; namespace MyWebsite { /// <summary> /// Global ASAX override. /// </summary> public class Global : UmbracoApplication { // Init. Set up handlers here. public override void Init() { HttpApplication objApplication = this as HttpApplication; objApplication.PreRequestHandlerExecute += PreRequestHandlerExecute; base.Init(); } // Called when a session starts. private new void PreRequestHandlerExecute(object sender, EventArgs e) { // Get current session. HttpSessionState objSession = ((UmbracoApplication)sender).Context.Session; // Make sure that there is an active session. if (objSession != null) { // Work with the session here. } } } }
This is essentially the framework for our new Global.asax, we've already told Umbraco to use the new class so when you load your website now, all code within the 'PreRequestHandlerExecute' function is run for every requested page within the website. An example of why this might be useful is a security redirect if a particular session state has not been met, or an automatic login given the correct querystring value.
It's really that simple, you can add over event handlers into the class by checking out what intellisence has to offer on the objApplication object.
Published at 22 Jan 2016, 21:28 PM
Tags: Umbraco,C#