摘要:
if (System.Web.HttpContext.Current.Session["PersonalPagesize"] != null) { PersonalPagesize = (Dictionary>)System... 阅读全文
摘要:
Summary: Discusses how to share session state between classic ASP and Microsoft ASP.NET using Microsoft .NET Framework classes and the serialization feature of the .NET Framework. Sharing session stat... 阅读全文
摘要:
1. this.Session["username"] = null HttpSessionState 内部使用 NameObjectCollection 类型的集合对象来存储用户数据。因此使用 this.Session["username"] = null 仅仅是将该元素的值设为 null 而已,并没有真的将其从 Session 中移除。 正确的方法是:this.Session.Remove... 阅读全文