Global.asax.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:2k
源码类别:

.net编程

开发平台:

Others

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. using System.Diagnostics;
  7. namespace qminoa.Webs
  8. {
  9. /// <summary>
  10. /// Global 的摘要说明。
  11. /// </summary>
  12. public class Global : System.Web.HttpApplication
  13. {
  14. public Global()
  15. {
  16. InitializeComponent();
  17. }
  18. protected void Application_Start(Object sender, EventArgs e)
  19. {
  20. Application["vRoot"] = "/hotop100oa/"   ;
  21. }
  22.  
  23. protected void Session_Start(Object sender, EventArgs e)
  24. {
  25. Session["EmpID"] ="";
  26. Session["username"] ="";
  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. Exception error = Server.GetLastError();
  40. if ( error is HttpException )
  41. {
  42. if ( ( ( HttpException )error ).GetHttpCode() == 404 )
  43. return;
  44. }  
  45. EventLog.WriteEntry( "qminoaLog", error.ToString(), EventLogEntryType.Error);
  46. }
  47. protected void Session_End(Object sender, EventArgs e)
  48. {
  49. }
  50. protected void Application_End(Object sender, EventArgs e)
  51. {
  52. }
  53. #region Web Form Designer generated code
  54. /// <summary>
  55. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  56. /// 此方法的内容。
  57. /// </summary>
  58. private void InitializeComponent()
  59. {    
  60. }
  61. #endregion
  62. }
  63. }