在 Cookie 中从 C# 检索到 jquery

本文关键字:jquery 检索 Cookie 中从 | 更新日期: 2023-09-27 18:34:21

大家好,我遇到了这个问题,即将代码隐藏文件中的 C# cookie lastGuestInsertedId获取到另一个 Web 表单,该表单通过 jquery 检索lastGuestInsertedId值,然后通过警报显示值。有什么想法吗?

C# 代码

            HttpCookie GuestCookie = new HttpCookie("GuestCookie");
            GuestCookie["Key"] = Convert.ToString(lastGuestInsertedId) ;
            GuestCookie.Expires = DateTime.Now.AddDays(1d);
            Response.Cookies.Add(GuestCookie);

JQuery 代码

            var guestkey = $.cookie("GuestCookie")
            alert(guestkey);

在 Cookie 中从 C# 检索到 jquery

$.cookie不是

默认jQuery的一部分。你需要一些jQuery插件来做到这一点。

检查您是否真的在客户端有cookie - alert(document.cookie) .