0

当网页打开并且没有进行任何操作时,一段时间后我需要重定向到登录页面,要求用户再次重新登录。我怎么能在 asp.net mvc 3 中做到这一点任何帮助表示赞赏

4

1 回答 1

0
Check the user session variable is null or not,if it is null,then redirect to login page.

if (Session["User"] == null)
{  Response.Redirect("Login.aspx");
}
于 2012-12-12T11:47:44.400 回答