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