首次加载时清除 cookie
我希望应用程序在发布后首次加载站点时清除每个用户的 cookie。问题是,cookie 可以存储许多信息,这些信息在发布后变得不真实,但仍在使用中。有什么想法吗?
I want application to clear cookie for every user on first site load after publishing. The matter is, cookies can store much information, that becomes non-actual after publishing, but is still in use. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我曾经做过的一件事是在 cookie 中设置一些唯一的字符串。
让我们说blah blah blah或者其他什么。您也可以在 web.config 文件中保留相同的字符串。
当读取 cookie 时,它会检查 cookie 中的唯一字符串是否与 web.config 文件中的字符串匹配。
如果是,您只需继续,如果不是,则丢弃该 cookie。
因此,如果您只是更改 web.config 文件中的字符串,下次用户尝试登录时,cookie 将被丢弃。
One thing that I used to do is set some unique string in the cookie.
Lets say blah blah blah or whatever. And you can keep the same string in the web.config file as well.
When the cookie is read, it checks whether the unique string in the cookie matches the string in the web.config file.
If it is, you simply proceed and if it's not, you discard the cookie.
So if you simply change the string in the web.config file, next time a user tries to log in, the cookie will be discarded.