using System; using System.Collections.Generic; using System.Web; using System.Web.Security; using System.Web.SessionState; namespace FineUI.Examples { public class Global : System.Web.HttpApplication { protected void Application_Start(object sender, EventArgs e) { Application["OnlineUserCount"] = 0; } protected void Session_Start(object sender, EventArgs e) { // 这种统计在线人数的做法会有一定的误差 Application.Lock(); Application["OnlineUserCount"] = (int)Application["OnlineUserCount"] + 1; Application.UnLock(); } protected void Application_BeginRequest(object sender, EventArgs e) { } protected void Application_AuthenticateRequest(object sender, EventArgs e) { } protected void Application_Error(object sender, EventArgs e) { } protected void Session_End(object sender, EventArgs e) { Application.Lock(); Application["OnlineUserCount"] = (int)Application["OnlineUserCount"] - 1; Application.UnLock(); } protected void Application_End(object sender, EventArgs e) { } } }