我正在使用Asp.net MVC 3應用程序,其中我有一個在帳戶控制器中註銷的方法。如果用戶會話在服務器上過期,應該從應用程序中註銷用戶
public ActionResult LogOff()
{
try
{
// Session.User = null;
this._authenticationService.SignOut();
return RedirectToAction("Login", "Account");
}
catch (Exception e)
{
return View("Error");
}
}
我想打電話從Session_End中的方法將此方法的global.asax.cs或是否有任何其他的方式來調用RedirectToAction("Login", "Account");
從的global.asax.cs文件。
你試圖做一些用戶的要求之外? (還要注意[Session_End沒有爲SQL /狀態服務會話狀態解僱](http://stackoverflow.com/questions/852942/how-do-you-programatically-end-a-session-in-asp-net) )。 – 2013-02-13 06:08:37