码迷,mamicode.com
首页 > 其他好文 > 详细

session相关----高手请跳过!

时间:2014-10-15 20:05:41      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   数据   on   log   html   

session[“username”]=null;//Session.Remove(“username”);的结果是session[“username”]=null了

session[“username”]=””;

session.clear();//表示将会话中所有的session的键值都清空,但是session还是依然存在,同等于Session.RemoveAll()

session.abandon();

//---------------------------------自己写的小栗子----------------------------------------------------------------------------------

Session["username"] = "xxj";
            Response.Write("username:"+Session["username"]);
            //Session.Remove("username");//值为NULL
            //Session.Abandon();//值不为NULL,为xxj
            Session.Clear();//Session.Clear只是清除Session中的所有数据并不会中止该Session,值为NULL

           
            //Response.Write("移除后的username:" + Session["username"]);
            if (Session["username"] == null)
            {
                Response.Write("session[\"username\"]真的为NULL了");
            }
           
            else
            {
                Response.Write("session[\"username\"]不为NULL,session[\"username\"]的值为" + Session["username"]);
            }

参考:http://www.cnblogs.com/shuang121/archive/2011/03/02/1968768.html

session相关----高手请跳过!

标签:blog   http   io   ar   sp   数据   on   log   html   

原文地址:http://www.cnblogs.com/QMM2008/p/4026910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!