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

C#编程

开发平台:

Others

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