FormsAuthentication.SetAuthCookie
您好,我们正在使用 FormsAuthentication.SetAuthCookie(profile.Id, false);
现在的问题是这个 cookie 何时过期?
当然,一旦我关闭所有浏览器,它就会过期,但我不会保持浏览器打开状态,而且我不知道时间限制。
hi we are using FormsAuthentication.SetAuthCookie(profile.Id, false);
Now the question is when does this cookie expires?
It of course expires once I close all the browsers but it doesn't I keep the browser open and I don't know the timelimit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它将取决于 web.xml 中的 Timeout 属性。配置。
It will depend on the Timeout property in web.config.
在 web.config 文件的 system.web 属性中,您必须设置以下内容:
然后您的 cookie 将根据您在超时属性中设置的值过期。
In the system.web attribute of your web.config file, you must set the following:
then your cookie will expire depending on the value you have set in the timeout attribute.