Global.asax.cs
上传用户:hbbfjy2008
上传日期:2015-02-05
资源大小:5616k
文件大小:1k
源码类别:

中间件编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. namespace iWebOffice.ocx.c.net  
  7. {
  8. /// <summary>
  9. /// 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.  
  21. protected void Session_Start(Object sender, EventArgs e)
  22. {
  23. iDBManage2000 DBAobj = new iDBManage2000() ;
  24. DBAobj.Open(); 
  25. Session["DBDemo"]=DBAobj;
  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. iDBManage2000 DBAobj;
  42. DBAobj=(iDBManage2000)Session["DBDemo"];
  43. DBAobj.Close();
  44. }
  45. protected void Application_End(Object sender, EventArgs e)
  46. {
  47. }
  48. #region Web Form Designer generated code
  49. /// <summary>
  50. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  51. /// 此方法的内容。
  52. /// </summary>
  53. private void InitializeComponent()
  54. {    
  55. }
  56. #endregion
  57. }
  58. }