我的登录页面中有以下 cookie:
Response.Cookies("userInfo")("userName") = "s"
Response.Cookies("userInfo")("lastVisit") = DateTime.Now.ToString()
Response.Cookies("userInfo").Expires = DateTime.Now.AddDays(1)
Response.Redirect("default.aspx")
这在我的 default.aspx 上:
If Not Request.Cookies("userName") Is Nothing Then
Label1.Text = Server.HtmlEncode(Request.Cookies("userName").Value)
End If
If Not Request.Cookies("userName") Is Nothing Then
Dim aCookie As HttpCookie = Request.Cookies("userName")
Label1.Text = Server.HtmlEncode(aCookie.Value)
End If
但我需要:Response.Cookies("userInfo")("userName") = "s"
成为:textboxUser 的值。如何才能做到这一点?
我试过了 :Response.Cookies("userInfo")("userName") = "textboxUser.Text"
但它只是显示,而不是用户。
另外,当我填写时:Response.Cookies("userInfo")("userName") = "s"
它不会在默认页面上显示“s”但是:Label
有人可以为我指出一个好的方向吗?