Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当会话到期时,我想重定向到登录页面。如何也可以在客户端事件上完成
像这样试试
function redirectme() { @if(Session["key"]==null) { <text>window.location.href='/Account/Login';</text> } }
希望这对你有用。
您可以通过 javascript 调用控制器方法,然后将重定向代码放入控制器方法中来完成它。这样,javascript 将检查会话是否过期,如果是,它将调用我们的方法,然后调用客户端的重定向。