我的控制器中有以下内容:
public ActionResult Login(string email, string password)
{
/*
some stuff
...
*/
HttpCookie CustomerCookie = new HttpCookie("Customer");
CustomerCookie.Values.Add("FirstName", Customer.FirstName);
CustomerCookie.Values.Add("LastName", Customer.LastName);
CustomerCookie.Values.Add("Email", email);
CustomerCookie.Secure = true;
Response.Cookies.Add(CustomerCookie);
return RedirectToAction("OrderType", "Order");
}
但由于某种原因,当我寻找cookie时,在重定向之后无处可寻。根据{{3}}我假设上述方法可行。
有人能看出为什么我的cookie没有在这里创建吗?
答案 0 :(得分:2)
我将采取的一些故障排除步骤: