Cookies,更新mvc中每个请求的过期日期

发布于 2024-09-11 22:37:34 字数 200 浏览 2 评论 0原文

我有一个相当简单的 Web 应用程序,它使用 cookie 来存储有关用户的一些信息并在每个请求上授权他们。当用户首次登录网站时,会创建一个 cookie,并在其中存储一些加密信息,过期时间设置为当前时间加上 24 小时。 我想要实现的是,当用户在网络应用程序中移动时,他们的到期日期会不断增加到当前时间后的 24 小时。

最好的方法是什么?我应该在控制器上使用属性吗?

I have a fairly simple web app that uses cookies to store some information about the user and to authorize them on each request. When the user first logs into the site a cookie is created and some encrypted information is stored in there, the expiration is set for the current time plus 24 hrs.
What I want to achieve is that whilst a user is moving through the web app their expiration date is constantly being increased to be 24 hrs from the current time.

What is the best way to do this? Should I be using a attribute on the controller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-09-18 22:37:34

您可以编写一个自定义操作过滤器,该过滤器将在每个操作之前执行。此过滤器将从请求中读取 cookie,并设置一个具有相同名称和值但具有新到期日期的新 cookie。

You could write a custom action filter that will execute before each action. This filter will read the cookie from the request and set a new cookie with the same name and value but with a new expiration date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文