【发布时间】:2016-03-23 20:51:44
【问题描述】:
我使用简单的会话元素创建了我的登录。我需要一个像我一样简单的注销过程。如何创建与我的登录代码一致的注销?提前致谢。
下面是我的模型;
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);
}
}
【问题讨论】:
标签: asp.net-mvc session logout