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

📄 global.asax

📁 C#编的网上交易站点系统。实现购买
💻 ASAX
字号:
<%@ Application Language="C#" %>

<script runat="server">

    void Application_Start(Object sender, EventArgs e) {
        Application.Lock();
        Application["number"] = 0;
        Application.UnLock();
        Application.Lock();
        Application["online"] = 0;
        Application.UnLock();

    }
    
    void Application_End(Object sender, EventArgs e) {
        //  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) {
        Application.Lock();
        Application["number"] = Convert.ToInt32(Application["number"]) + 1;
        Application.UnLock();



    }

    void Session_End(Object sender, EventArgs e) {
        Application.Lock();
        Application["number"] = Convert.ToInt32(Application["number"]) - 1;
        Application.UnLock();



    }
       
</script>

⌨️ 快捷键说明

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