Global.asax.cs
上传用户:jxqhsy
上传日期:2020-12-31
资源大小:1793k
文件大小:1k
源码类别:

SilverLight

开发平台:

HTML/CSS

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Security;
  6. using System.Web.SessionState;
  7. namespace SFGS.Web
  8. {
  9.     public class Global : System.Web.HttpApplication
  10.     {
  11.         protected void Application_Start(object sender, EventArgs e)
  12.         {
  13.         }
  14.         protected void Session_Start(object sender, EventArgs e)
  15.         {
  16.             
  17.         }
  18.         protected void Application_BeginRequest(object sender, EventArgs e)
  19.         {
  20.         }
  21.         protected void Application_AuthenticateRequest(object sender, EventArgs e)
  22.         {
  23.         }
  24.         protected void Application_Error(object sender, EventArgs e)
  25.         {
  26.         }
  27.         protected void Session_End(object sender, EventArgs e)
  28.         {
  29.         }
  30.         protected void Application_End(object sender, EventArgs e)
  31.         {
  32.         }
  33.     }
  34. }