gpt4 book ai didi

c# - ASP.NET MVC cookie 不保存?

转载 作者:太空狗 更新时间:2023-10-29 21:41:57 26 4
gpt4 key购买 nike

为什么这个 cookie 不保存在我的 global.asax 的 Session_Start 方法中?

//new anon user:

var authCookie = new HttpCookie("user-id", string.Format("{0}-{1}", regiserAccountResponse.UserName, regiserAccountResponse.Key))
{
Expires = DateTime.MaxValue,
Domain = "domain.com",
Secure = true,
HttpOnly = true
};

//create the new users cookie - there's no need to call RegisterNewUserSession as this is done in the same call
HttpContext.Current.Response.SetCookie(authCookie);

最佳答案

如果您想将 cookie 限制在您网站的特定部分,您只需指定域。只有在正确的范围内,cookie 才会包含在请求中。

通过将域设置为“domain.com”,您表示该 cookie 仅可用于“domain.com”,因此您不会从本地主机(或域以外的任何其他域)检测到它。 com”)。

您还会注意到,如果您尝试从您自己以外的域向浏览器发送 cookie,浏览器会将其打包。

关于c# - ASP.NET MVC cookie 不保存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4285810/

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