我在javascript中创建了一个cookie ...
(document).ready(function () {
$.cookie("test", "Hello Michael");
alert($.cookie("test"));
});
警报按预期显示Cookie内容。 我试图在vb.net代码后面阅读它...
Dim cookie As HttpCookie
cookie = HttpContext.Current.Request.Cookies.Get("test")
If IsNothing(cookie) Then
txtCookie.Text = "Cookie not found"
Else
txtCookie.Text = cookie.Value
End If
我总是得到'找不到Cookie'。
我显然遗漏了一些东西......请指教!
答案 0 :(得分:0)
您需要将.side {
z-index: 1;
}
.container {
position:relative;
z-index:1;
}
值添加到Cookie
path
并且,$.cookie("test", "Hello Michael", { path : "/" });
可行。
此外,Request.Cookies("test")
,(document)
缺失。