Logout from MVC

前端 未结 4 414
南旧
南旧 2021-01-07 09:56

I have a MVC application and I have to logout. To logout from the application I have created a link on te master page

[ 

        
4条回答
  •  被撕碎了的回忆
    2021-01-07 10:37

    if you're using forms authentication then this is what you are looking for...

    public ActionResult LogOut()
            {
                Session.Clear();
                FormsAuthentication.SignOut();
                Redirect("http://AnotherApplicaton/Home/LogOut");
            }
    

    hth

提交回复
热议问题