MVC中的注销操作

时间:2016-03-23 12:44:52

标签: asp.net-mvc session logout

我使用简单的会话元素创建了我的登录信息。我需要一个像我一样简单的注销过程。如何创建与我的登录代码协调一致的注销?提前谢谢。

以下是我的模型;

public class LoginModel
{
    public string UserName { get; set; }
    public string Password { get; set; }
    public string ErrorMessage { get; set; }
}

我的控制器也在下面;

 public ActionResult Index()
    {
        Session["User"] = null;
        LoginModel model = new LoginModel();
        return View(model);
    }


    [HttpPost]
    public ActionResult Index(LoginModel data)
    {
        string user = System.Configuration.ConfigurationManager.AppSettings["UserName"];
        string password = System.Configuration.ConfigurationManager.AppSettings["Password"];
        if (data.UserName == user && data.Password == password)
        {
            Session["User"] = "1";
            return RedirectToAction("Index", "Home");
        }
        else
        {
            data.ErrorMessage = "Incorrect password or username entered. Please try again.";
            return View(data);
        }
    }

1 个答案:

答案 0 :(得分:0)

如果“用户已登录”的定义是“UserID存储在Session["User"],那么注销同样微不足道:只是清除会话变量,如ASP.NET removing an item from Session?中所述:

[HttpPost]
public ActionResult LogOut()
{
    Session.Remove("User");
}