我要做一个用户在线系统,大家知道要做些什么吗!!!

解决方案 »

  1.   

    public class Global : System.Web.HttpApplication 
        {         protected void Application_Start(object sender, EventArgs e) 
            { 
                Application["Count"] = 0; 
            } 
            protected void Session_Start(object sender, EventArgs e) 
            { 
                Application["Count"] = (int)Application["Count"] + 1; 
            }      
            protected void Session_End(object sender, EventArgs e) 
            { 
                if ((int)Application["Count"] > 0) Application["Count"] = (int)Application["Count"] - 1; 
            }     } http://topic.csdn.net/u/20090412/03/5e494cd8-bade-432c-96de-40ac3f35c1ca.html?seed=984497872