Global.asax
上传用户:cpbs999
上传日期:2022-03-10
资源大小:1805k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Others

  1. <%@ Application Language="C#" %>
  2. <script runat="server">
  3.     void Application_Start(object sender, EventArgs e) 
  4.     {
  5.         // Code that runs on application startup
  6.     }
  7.     
  8.     void Application_End(object sender, EventArgs e) 
  9.     {
  10.         //  Code that runs on application shutdown
  11.     }
  12.         
  13.     void Application_Error(object sender, EventArgs e) 
  14.     { 
  15.         // Code that runs when an unhandled error occurs
  16.     }
  17.     void Session_Start(object sender, EventArgs e) 
  18.     {
  19.         // Code that runs when a new session is started
  20.         Session["UserName"] = String.Empty;
  21.     }
  22.     void Session_End(object sender, EventArgs e) 
  23.     {
  24.         // Code that runs when a session ends. 
  25.         // Note: The Session_End event is raised only when the sessionstate mode
  26.         // is set to InProc in the Web.config file. If session mode is set to StateServer 
  27.         // or SQLServer, the event is not raised.
  28.     }
  29.        
  30. </script>