计算在线人数
Global中
protected void Application_Start(Object sender, EventArgs e)
{
Application["Counter"] = "0";
}
protected void Session_Start(Object sender, EventArgs e)
{
Application.lock();
Application["Counter"] = Convert.ToInt32(Application["Counter"])+1;
Application.unlock();
}
protected void Session_End(Object sender, EventArgs e)
{
Application.lock();
Application["Counter"] = Convert.ToInt32(Application["Counter"])-1;
Application.unlock();
}


博文作者:mephisto
本文版权归作者和博客园共有,欢迎转载,但须保留此段声明,并给出原文链接,谢谢合作!
如果阅读了本文章,觉得有帮助,您可以选择捐助我:
