Global.asax.cs 1.3 KB

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