Global.asax.cs
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Web;
  5. using System.Web.SessionState;
  6. namespace eshop 
  7. {
  8. /// <summary>
  9. /// Global 的摘要说明。
  10. /// </summary>
  11. public class Global : System.Web.HttpApplication
  12. {
  13. /// <summary>
  14. /// 必需的设计器变量。
  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. if (Request.Path.IndexOf('\') >= 0 ||
  31. System.IO.Path.GetFullPath(Request.PhysicalPath) != Request.PhysicalPath) 
  32. {
  33. throw new HttpException(404, "not found");
  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 窗体设计器生成的代码
  52. /// <summary>
  53. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  54. /// 此方法的内容。
  55. /// </summary>
  56. private void InitializeComponent()
  57. {    
  58. this.components = new System.ComponentModel.Container();
  59. }
  60. #endregion
  61. }
  62. }