コード例 #1
0
ファイル: AccountController.cs プロジェクト: pumpz/GHB_TEAM
 public ActionResult SessionLogOff(string userName)
 {
     if (FormsService == null)
     {
         FormsService = new FormsAuthenticationService();
     }
     FormsService.SessionSignOut(userName);
     return(RedirectToAction("LogOn", "Account"));
 }