检索 ASHX 中的 cookie 值
有没有办法在 ASHX Handler 中检索 cookie 值?
我在页面中设置了 cookie,并且想在 ashx 中检索它。我的cookie始终为空。
我像这样保存我的 cookie
HttpCookie tokenCookie = new HttpCookie(cookieName);
tokenCookie.Values["siteGuid"] = authenticationInfo.SiteGuid.ToString();
HttpContext.Current.Response.Cookies.Add(tokenCookie);
我像这样检索我的 cookie
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName];
return new Guid(cookie["siteGuid"]);
好吧,抱歉,这是我的错。我的处理程序位于子域中。
It's there a way to retrieve cookie value in ASHX Handler ?
I set a cookie in a page, and I want to retrieve it in my ashx. My cookie is always null.
I save my cookie like this
HttpCookie tokenCookie = new HttpCookie(cookieName);
tokenCookie.Values["siteGuid"] = authenticationInfo.SiteGuid.ToString();
HttpContext.Current.Response.Cookies.Add(tokenCookie);
I retrieve my cookie like this
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName];
return new Guid(cookie["siteGuid"]);
Ok sorry that was my fault. My handler was on a sub domain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想跨子域访问cookies。您可能需要为 cookies 分配域名>
不要错过域名前的 .(点)。
If you want to access the cookies across the sub-domain. You might need to assign the domain name for the cookies>
Don't miss the .(Dot) before the domain name.
您可以访问 Request 对象上的 cookies 集合。
它看起来像下面这样
You can access the cookies collection on the Request object.
It would look something like the following
写入 cookie:
读取 cookie:
Write a cookie:
Read a cookie: