如何在MVC中设置时间注销

本文关键字:设置 时间 注销 MVC | 更新日期: 2023-09-27 17:52:13

一个用户登录,该用户只能在8小时后登出。

如何在MVC中编写Jquery。

var usrtime = ctx.Attendances.Select(s => s.Time && s.Id == Id);

如何在MVC中设置时间注销

Try

if (logoutTime > usrtime) {
   window.location.href = '@Url.Action("ActionName", "ControllerName")';
}

然后在操作中将用户注销并重定向到login

请以更好的方式阐明您的场景。用户登出取决于cookie过期或令牌过期等方式。控制cookie超时时间。

<authentication mode="Forms">
  <forms loginUrl="~/Account/Login" slidingExpiration="true" timeout="480" />
</authentication>