如何得到Sessionid的值_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 如何得到Sessionid的值

如何得到Sessionid的值

 2014/7/31 12:23:02  code&monkey  程序员俱乐部  我要评论(0)
  • 摘要:当用户向一个网站请求第一个页面时,用户会话启动。当第一个页面被请求时,web服务器将asp.net_sessionIDcookie添加进用户的浏览器。可以使用newsession属性探测新会话的启动。当新会话启动时,newsession属性返回true。response.write(session.newsession).每个用户会被分配一个唯一的会话ID,可以像下面这样获取会话ID的值response.write(session.sessionid)会话ID确保在所有当前用户会话中是唯一的
  • 标签:

当用户向一个网站请求第一个页面时,用户会话启动。当第一个页面被请求时,web服务器将
asp.net_sessionID  cookie添加进用户的浏览器。
可以使用newsession属性探测新会话的启动。当新会话启动时,newsession属性返回true。
response.write(session.newsession).

每个用户会被分配一个唯一的会话ID,可以像下面这样获取会话ID的值
response.write(session.sessionid)
会话ID确保在所有当前用户会话中是唯一的。但是,随着时间的推移会话ID不保证唯一;可能将来的新会话循环使用会话ID
看:

protected void Application_Start(Object sender, EventArgs e)
{
       Hashtable ht = new Hashtable();
       Application["SessionIDs"] = ht;
}

protected void Session_Start(Object sender, EventArgs e)
{
       Hashtable ht = (Hashtable) Application["SessionIDs"];
       ht.Add( Session.SessionID, Session.SessionID );
}

protected void Session_End(Object sender, EventArgs e)
{
       Hashtable ht = (Hashtable) Application["SessionIDs"];
       ht.Remove( Session.SessionID );
}

in order to know if a session is alive we use this method:

public bool IsSessionAlive( string id )
{
       Hashtable ht = (Hashtable) Application["SessionIDs"];
       return ht.ContainsKey( id );
}


 

上一篇: java常见的错误 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名