⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 global.asax

📁 Dos 以功能个性化和人性化为基础
💻 ASAX
字号:
<%@ Application Language="C#" %>

<script runat="server">
//===============================================
//          \\\|///
//          \\ - - //
//            ( @ @ )
//┏━━━━━━━━━oOOo-(_)-oOOo━━━┓
//┃                                     ┃
//┃             东 网 原 创!           ┃
//┃      lenlong 作品,请保留此信息!   ┃
//┃      ** lenlenlong@hotmail.com **   ┃
//┃                                     ┃
//┃             Dooo      ┃
//┗━━━━━━━━━ oooD━-(  )━━━┛
//           (  )   ) /
//           \ (  (_/
//            \_)
//===============================================
    void Application_Start(object sender, EventArgs e)
    {
        WebSite.WebSiteConfig webSiteConfig = new WebSite.WebSiteConfig();
        webSiteConfig.SetWebSiteApplicationStart();
        // Code that runs on application startup

    }
    
    void Application_End(object sender, EventArgs e) 
    {
        WebSite.WebSiteConfig webSiteConfig = new WebSite.WebSiteConfig();
        webSiteConfig.SetWebSiteApplicationEnd();
        //  Code that runs on application shutdown

    }
        
    void Application_Error(object sender, EventArgs e) 
    { 
        // Code that runs when an unhandled error occurs

    }

    void Session_Start(object sender, EventArgs e) 
    {
        WebSite.WebSiteConfig webSiteConfig = new WebSite.WebSiteConfig();
        webSiteConfig.SetWebSiteSession();
        //Controls.CheckLogin.CheckLoginHepler.Instance().UserInfos();
        // Code that runs when a new session is started

    }

    void Session_End(object sender, EventArgs e) 
    {
        // Code that runs when a session ends. 
        // Note: The Session_End event is raised only when the sessionstate mode
        // is set to InProc in the Web.config file. If session mode is set to StateServer 
        // or SQLServer, the event is not raised.

    }
       
</script>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -