gpt4 book ai didi

c# - IE9 中没有设置 Cookie

转载 作者:太空宇宙 更新时间:2023-11-03 20:28:55 24 4
gpt4 key购买 nike

我正在使用这段代码来设置 cookie。它在 Firefox 中完美运行。但在 IE9 中没有。

代码如下:

HttpCookie visitorCookie = new HttpCookie("VisitorCity", DdlCity.SelectedItem.Text)
{Expires = DateTime.Now.AddMonths(1)};
HttpContext.Current.Request.Cookies.Add(visitorCookie); // Add it to the header

最佳答案

通常当你想设置一个 cookie 时,你应该将它添加到响应中,而不是请求中:

HttpContext.Current.Response.Cookies.Add(visitorCookie);

是客户端浏览器,在发送后续的HTTP请求时,会附加cookie作为请求头。

关于c# - IE9 中没有设置 Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8668162/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com