在大型网站中我们时常要统计网站的访问人数,根据网站的访问人数调节缓存策略访问策略。
1.新建网站,在网站的全局应用程序类中的Application_Start()方法中将网站的访问人数记录到静态变量中,代码如下:
1 public static int _totalcount; 2 void Application_Start(object sender, EventArgs e) 3 { 4 // 在应用程序启动时运行的代码 5 _totalcount = 0; 6 }
2.在全局应用类中的session_Start()方法中,讲记录访问人数累加1:
1 void Session_Start(object sender, EventArgs e) 2 { 3 // 在新会话启动时运行的代码 4 Application.Lock(); 5 _totalcount++; 6 Application.UnLock(); 7 }
3.在测试页面中的Page_load事件处理程序中添加访问站点的总人数:
1 protected void Page_Load(object sender, EventArgs e) 2 { 3 this.Response.Write(string.Format("当期网站访问人数为: <b>{0}</b>", Global._totalcount)); 4 }