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