zoukankan      html  css  js  c++  java
  • 如何得到Sessionid的值

    当用户向一个网站请求第一个页面时,用户会话启动。当第一个页面被请求时,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 );
    }


  • 相关阅读:
    BZOJ3573: [Hnoi2014]米特运输
    BZOJ3531: [Sdoi2014]旅行
    BZOJ3505: [Cqoi2014]数三角形
    BZOJ3309: DZY Loves Math
    BZOJ3260: 跳
    BZOJ3252: 攻略
    BZOJ3226: [Sdoi2008]校门外的区间
    BZOJ3155: Preprefix sum
    BZOJ2843: 极地旅行社
    BZOJ2671: Calc
  • 原文地址:https://www.cnblogs.com/lisr/p/fishcmonkey.html
Copyright © 2011-2022 走看看