标签:生命周期 checked 特定 自动 创建 session username text 资源
一.Session
Session 对象存储特定用户会话所需的属性及配置信息。这样,当用户在应用程序的 Web 页之间跳转时,存储在 Session 对象中的变量将不会丢失,而是在整个用户会话中一直存在下去。当用户请求来自应用程序的 Web 页时,如果该用户还没有会话,则 Web 服务器将自动创建一个 Session 对象。当会话过期或被放弃后,服务器将终止该会话。Session 对象最常见的一个用法就是存储用户的首选项。
作用:只要有内容,那么在本网站中,所有的C#端都可以访问这个变量
优点:
缺点:
生命周期:
存储内容:
注意:
//赋值 string s = TextBox1.Text; Session["aa"] = s; //取值 if(Session["aa"]!=null) Label1.Text=Session["aa"].tostring();
二.Cookie
与Session一模一样
存放位置:客户电脑的浏览器客户端上,不同浏览器里的Cookie不通用
作用:保存数据信息,只能保存字符串,全局访问
Cookie和Session不同之处:
Session很安全,但是消耗服务器内存
Cookies,不消耗服务器内存,存在客户端上,但是有可能被访问
(1) 临时Cookie:
清除方法:
(2) 持久Cookie:
清除方法:
//赋值 string s = TextBox1.Text; Response.Cookies["username"].Value = s; if (CheckBox1.Checked) { Response.Cookies["username"].Expires =DateTime.Now.AddDays(3);//设置Cookie的过期时间 } //取值 if (Request.Cookies["username"] != null) Label1.Text = Request.Cookies["username"].Value; //清除持久Cookie ,直接给此Cookie过期时间设置之前的日期 Response.Cookies["username"].Expires=DateTime.Now.AddDays(-10);
标签:生命周期 checked 特定 自动 创建 session username text 资源
原文地址:http://www.cnblogs.com/zhangxin4477/p/6885825.html