在Asp.Net MVC5 Jquery Mobile应用程序中,会话到期时重定向到登录页面

时间:2014-12-30 07:13:01

标签: jquery-mobile asp.net-mvc-5

我正在研究Asp.Net MVC 5 Jquery Mobile应用程序。我在会话到期时遇到了重定向页面的问题。

例如,用户在主页上。当会话过期并且我使用F5刷新页面时,它会再次将我重定向到登录页面。这很好,但是在会话到期后,如果我没有按F5并尝试单击链接将我重定向到另一个页面,而不是将我重定向到登录页面,它会显示一个带有单词"未定义&#34的白色html页面;

我猜这是JQuery Mobile的事情。当用户在Asp.Net MVC5 Jquery Mobile应用程序会话到期后执行任何活动时,如何重定向到登录页面。

app.UseCookieAuthentication(new CookieAuthenticationOptions
{
    AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
    LoginPath = new PathString("/Account/Login"),
    ExpireTimeSpan = TimeSpan.FromSeconds(15.0) 
});

任何帮助?

0 个答案:

没有答案