我在特定的時間,在一個特定的時間扭動一個簡單的在線遊戲, ,遊戲將被更新,當時間到了,首先我需要註銷用戶。 在Global.asax的「Application_Start」函數中,我初始化了計時器,當它打勾時,調用我在Global.asax中寫的方法「UpdateGame」。這裏是方法:在Global.asax註銷用戶
public static void UpdateGame()
{
AccountController account = new AccountController();
AdminController admin = new AdminController();
HomeController home = new HomeController();
account.LogOff();
admin.ChechHireEndTimes();
admin.CheckRentsEndTimes();
admin.UpdateRankings();
admin.InitializeAbstractTimes();
}
當它來到logOff(),它凍結。這裏是註銷方法:
[Authorize]
public ActionResult LogOff()
{
FormsService.SignOut();
return RedirectToAction("Index", "Home");
}
我工作了很多,但它似乎是因爲註銷不與HTTP請求調用時,它不工作當用戶按下注銷按鈕。
所以我的問題是,我如何從Global.asax內部調用像這樣的控制器的動作?
This [answer](http://stackoverflow.com/a/2355104/60108)可能會幫助你。 – Eranga 2011-12-29 10:01:25
是的,謝謝Eranga,這是我的回答。 – nafiseh 2011-12-29 10:26:27