标签:
void Application_Start(object sender, EventArgs e) { // 在应用程序启动时运行的代码 Application["CusCount"] = 0; } void Session_Start(object sender, EventArgs e) { // 在新会话启动时运行的代码 Application.Lock(); Application["CusCount"] =(int) Application["CusCount"] + 1; Application.UnLock(); } void Session_End(object sender, EventArgs e) { // 在会话结束时运行的代码。 // 注意: 只有在 Web.config 文件中的 sessionstate 模式设置为 // InProc 时,才会引发 Session_End 事件。如果会话模式设置为 StateServer // 或 SQLServer,则不引发该事件。 Application.Lock(); Application["CusCount"] = (int)Application["CusCount"] - 1; Application.UnLock(); }
然后编写新建一个web窗体,写入方法
protected void Page_Load(object sender, EventArgs e) { Response.Write("欢迎你,第" + Application["CusCount"] + "位顾客<br/>"); }
介绍一下Application按照索引取出数据
使用上一个页面,写入方法
protected void Page_Load(object sender, EventArgs e) { Response.Write("欢迎你,第" + Application["CusCount"] + "位顾客<br/>"); Application.Add("Key1", "Value1"); Application.Add("Key1", "Value1"); Application.Add("Key1", "Value1"); for (int index = 0; index < Application.Count; index++) { Response.Write(Application.GetKey(index) + ": "); Response.Write(Application.Get(index) + "<br/>"); } }
页面这样展示
标签:
原文地址:http://www.cnblogs.com/zbqldyj/p/4545361.html