/Reports/Global.asax.cs
C# | 70 lines | 44 code | 19 blank | 7 comment | 0 complexity | b983547d8def84d26337bbf51e669254 MD5 | raw file
1using System; 2using System.Collections; 3using System.ComponentModel; 4using System.Web; 5using System.Web.SessionState; 6 7namespace Reports 8{ 9 /// <summary> 10 /// Summary description for Global. 11 /// </summary> 12 public class Global : System.Web.HttpApplication 13 { 14 public Global() 15 { 16 InitializeComponent(); 17 } 18 19 protected void Application_Start(Object sender, EventArgs e) 20 { 21 22 } 23 24 protected void Session_Start(Object sender, EventArgs e) 25 { 26 27 } 28 29 protected void Application_BeginRequest(Object sender, EventArgs e) 30 { 31 32 } 33 34 protected void Application_EndRequest(Object sender, EventArgs e) 35 { 36 37 } 38 39 protected void Application_AuthenticateRequest(Object sender, EventArgs e) 40 { 41 42 } 43 44 protected void Application_Error(Object sender, EventArgs e) 45 { 46 47 } 48 49 protected void Session_End(Object sender, EventArgs e) 50 { 51 52 } 53 54 protected void Application_End(Object sender, EventArgs e) 55 { 56 57 } 58 59 #region Web Form Designer generated code 60 /// <summary> 61 /// Required method for Designer support - do not modify 62 /// the contents of this method with the code editor. 63 /// </summary> 64 private void InitializeComponent() 65 { 66 } 67 #endregion 68 } 69} 70