Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.2 KiB

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