为什么我的cookie会取两编
private void Button1_Click(object sender, System.EventArgs e)
{
HttpCookie cookie=new HttpCookie("aspnet");
cookie.Value=TextBox1.Text;
Response.AppendCookie(cookie);
HttpCookie cookie1=Request.Cookies["aspnet"];
TextBox2.Text=cookie1.Value;
}
比如if TextBox1.Text=1 then cookie.value=1 and cookie1.value=1
result:TextBox2.Text=1 第一次正确
if TextBox1.Text=2 then cookie.value=2 and cookie1.value=1
result:TextBox2.Text=1 第二次没有改变 主要是获取的时候还是第一次的cookie
但是在点一下确定按钮的话 TextBox2.Text=2了!!
为什么?在线!!