Я столкнулся с проблемой с FormsAuthenticationTicket. Как решить (прилагается исходный код)?
string json = JsonConvert.SerializeObject(viewModel);
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, viewModel.exampleInputEmail1, DateTime.Now, DateTime.Now.AddMinutes(15), false, json);
string encrypted = FormsAuthentication.Encrypt(ticket);
HttpCookie cookie = new HttpCookie("user", encrypted);
Response.Cookies.Add(cookie);
return Redirect(Url.Action("Index", "News"));
}
else
{
ModelState.AddModelError("", "האימות נכשל");
return View(viewModel);
}