gpt4 book ai didi

internet-explorer - Cookie 在 IE 中不起作用

转载 作者:行者123 更新时间:2023-12-04 07:44:55 25 4
gpt4 key购买 nike

Cookie 不适用于 IE。浏览器设置为允许 cookie。它在 Firefox 中运行良好...并且在我本地运行时在 IE 中运行良好。但是我一发布,它就坏了。它用于投票,因此用户不能多次投票。一旦用户尝试投票,以下代码就会运行:

if (Request.Cookies["Poll"] != null && Request.Cookies["Poll"].Value == "Voted")
{
// Display label
lblVoted.Visible= true;
}
else
{
// Update DB
// Add cookie
Response.Cookies["Poll"].Value = "Voted";
Response.Cookies["Poll"].Expires = DateTime.Now.AddDays(30);
}

最佳答案

也许您的本地服务器名称中有下划线。有时这可能是个问题。检查http://www.enhanceie.com/ie/bugs.asp

关于internet-explorer - Cookie 在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3144312/

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