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

📄 global.asax.cs

📁 数据配置信息 登录数据库为sa 密码123 登录界面的用户信息:shichang 密码:sc
💻 CS
字号:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace ClassSay
{
    public class Global : System.Web.HttpApplication
    {
        BLL.Class1 bl1 = new  BLL.Class1();
        protected void Application_Start(object sender, EventArgs e)
        {
            int i =bl1.CountText();
            
            this.Application["SumConunt"] = i;
            this.Application["CountUser"] = 0;

        }

        protected void Application_End(object sender, EventArgs e)
        {
            
            bl1.UpdateSum((int)this.Application["SumConunt"]);
        }

       protected void Session_Start(object sender, EventArgs e)
        {

            this.Session.Timeout = 10;
            this.Application.Lock();
            this.Application["SumConunt"] = (int)this.Application["SumConunt"] + 1;
            this.Application["CountUser"] = (int)this.Application["CountUser"] + 1;
            this.Application.UnLock();

        }

      protected  void Session_End(object sender, EventArgs e)
        {
            this.Application.Lock();
            this.Application["CountUser"] = (int)this.Application["CountUser"] - 1;
            this.Application.UnLock();


            // 在会话结束时运行的代码。 
            // 注意: 只有在 Web.config 文件中的 sessionstate 模式设置为
            // InProc 时,才会引发 Session_End 事件。如果会话模式设置为 StateServer 
            // 或 SQLServer,则不会引发该事件。

        }
    }
}

⌨️ 快捷键说明

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