我正在开发 Asp.net MVC 3 应用程序,其中我有一种在帐户控制器中注销的方法。
public ActionResult LogOff()
{
try
{
// Session.User = null;
this._authenticationService.SignOut();
return RedirectToAction("Login", "Account");
}
catch (Exception e)
{
return View("Error");
}
}
我想从 global.asax.cs 中的 Session_End 方法调用此方法,或者是否有任何其他方法可以RedirectToAction("Login", "Account");
从 global.asax.cs 文件中调用。