我正在为 MVC 网站使用表单身份验证,我在添加 Cookie 时遇到问题,我正在使用加密表单身份验证票并将其添加到 Cookie 中,但是当检查我的 Cookie 时,它在那里(名称为“AuthCookie”)但值始终为空,过期日期始终设置为“01/01/0001 00:00”...这是我的登录控制器代码:
[HttpPost]
public ActionResult Index(Login login, string returnUrl)
{
if (ModelState.IsValid)
try
{
User user = UserManager.Login(login.Username, login.Password);
string serialUser = Serialize.SerializeToString(user);
string ticket = FormsAuthentication.Encrypt(
new FormsAuthenticationTicket(1, login.Username, DateTime.Now, DateTime.Now.AddMinutes(20.0), login.RemeberMe, serialUser));
HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName, ticket) { Expires = DateTime.Now.AddMinutes(20) };
Response.Cookies.Add(cookie);
if (String.IsNullOrEmpty(returnUrl))
return RedirectToAction("Index", "Home");
else
return Redirect(returnUrl);
}
catch (LoginFailedException)
{
ModelState.AddModelError("", "Login failed: Invalid Username or Password.");
return View(login);
}
else
return View(login);
}
起初,我认为加密字符串由于长度原因无法正常工作,但我通过创建一个简单的测试库来测试了这一点,并且得到了相同的结果。
谁能帮忙