日期:2014-05-18  浏览次数:20478 次

问一个cookies存与取值的问题
Response.Cookies["username"].Value = TextBox1.Text.Trim(); //保存 
 this.Label1.Text = "用户名:" + Response.Cookies["username"].Value;//获取  
请问下Cookies是不是这样用? 我是这样写的,但为什么我取值的时候取不到呢。。。

------解决方案--------------------
探讨
引用:
Response.Cookies["username"].Value = TextBox1.Text.Trim(); //保存
Response.Cookies["username"].Expires = DateTime.Now.AddDays(1);//过期时间
this.Label1.Text = "用户名:" + Request.Cookies["username"].Value;//获取

谢谢啦!!!
想请问下 HttpContext.Current.Response.Cookies 和 Response.Cookies 这样有什么区别啊