Global.asax.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. namespace PCSWebApp1 
  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.  
  25. protected void Session_Start(Object sender, EventArgs e)
  26. {
  27. }
  28. protected void Application_BeginRequest(Object sender, EventArgs e)
  29. {
  30. }
  31. protected void Application_EndRequest(Object sender, EventArgs e)
  32. {
  33. }
  34. protected void Application_AuthenticateRequest(Object sender, EventArgs e)
  35. {
  36. }
  37. protected void Application_Error(Object sender, EventArgs e)
  38. {
  39. }
  40. protected void Session_End(Object sender, EventArgs e)
  41. {
  42. }
  43. protected void Application_End(Object sender, EventArgs e)
  44. {
  45. }
  46. #region Web Form Designer generated code
  47. /// <summary>
  48. /// Required method for Designer support - do not modify
  49. /// the contents of this method with the code editor.
  50. /// </summary>
  51. private void InitializeComponent()
  52. {    
  53. this.components = new System.ComponentModel.Container();
  54. }
  55. #endregion
  56. }
  57. }