Global.asax.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. namespace SunRoxmServer
  7. {
  8. /// <summary>
  9. /// Summary description for Global.
  10. /// </summary>
  11. public class Global : System.Web.HttpApplication
  12. {
  13. /// <summary>
  14. /// Required designer variable.
  15. /// </summary>
  16. private System.ComponentModel.IContainer components = null;
  17. public Global()
  18. {
  19. InitializeComponent();
  20. }
  21. protected void Application_Start(Object sender, EventArgs e)
  22. {
  23. }
  24. protected void Session_Start(Object sender, EventArgs e)
  25. {
  26. }
  27. protected void Application_BeginRequest(Object sender, EventArgs e)
  28. {
  29. }
  30. protected void Application_EndRequest(Object sender, EventArgs e)
  31. {
  32. }
  33. protected void Application_AuthenticateRequest(Object sender, EventArgs e)
  34. {
  35. }
  36. protected void Application_Error(Object sender, EventArgs e)
  37. {
  38. }
  39. protected void Session_End(Object sender, EventArgs e)
  40. {
  41. }
  42. protected void Application_End(Object sender, EventArgs e)
  43. {
  44. }
  45. #region Web Form Designer generated code
  46. /// <summary>
  47. /// Required method for Designer support - do not modify
  48. /// the contents of this method with the code editor.
  49. /// </summary>
  50. private void InitializeComponent()
  51. {
  52. this.components = new System.ComponentModel.Container();
  53. }
  54. #endregion
  55. }
  56. }