From d4def2f2760bc6cae460b121be2197ad5cc4f13f Mon Sep 17 00:00:00 2001 From: "Matt@MBP-PC.Home" Date: Mon, 9 Jul 2012 11:09:05 -0100 Subject: [PATCH] Removed global.asax file completely --- src/umbraco.presentation/Global.asax | 1 - src/umbraco.presentation/Global.asax.cs | 47 ------------------------- 2 files changed, 48 deletions(-) delete mode 100644 src/umbraco.presentation/Global.asax delete mode 100644 src/umbraco.presentation/Global.asax.cs diff --git a/src/umbraco.presentation/Global.asax b/src/umbraco.presentation/Global.asax deleted file mode 100644 index a72605dd1a..0000000000 --- a/src/umbraco.presentation/Global.asax +++ /dev/null @@ -1 +0,0 @@ -<%@ Application Codebehind="Global.asax.cs" Inherits="umbraco.Global" Language="C#" %> diff --git a/src/umbraco.presentation/Global.asax.cs b/src/umbraco.presentation/Global.asax.cs deleted file mode 100644 index aa1ebb664d..0000000000 --- a/src/umbraco.presentation/Global.asax.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.Web; -using System.Threading; - -using umbraco.BusinessLogic; -using umbraco.BusinessLogic.Actions; -using umbraco.cms.businesslogic.datatype.controls; - -namespace umbraco -{ - /// - /// Summary description for Global. - /// - public class Global : HttpApplication - { - protected virtual void Application_Start(object sender, EventArgs e) - { - - } - - protected virtual void Application_BeginRequest(object sender, EventArgs e) - { - - } - - protected virtual void Application_AuthenticateRequest(object sender, EventArgs e) - { - - } - - protected virtual void Application_Error(object sender, EventArgs e) - { - - } - - protected virtual void Session_End(object sender, EventArgs e) - { - - } - - protected virtual void Application_End(Object sender, EventArgs e) - { - Log.Add(LogTypes.System, BusinessLogic.User.GetUser(0), -1, "Application shut down at " + DateTime.Now); - } - } -} -