我想用jquery设置一个cookie并在服务器端代码中访问它。
这是我到目前为止所提出的:
在jquery中:
$.cookie("MyKey", "MyData", { path: "/" })
在vb.net(服务器端代码)中:
If Request.Cookies("MyKey") IsNot Nothing Then
Dim mystring As String = Request.Cookies.Get("MyKey").Value
End if
但我没有回报。 有办法解决这个问题吗?
提前致谢