I have the following in my controller:
    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");
    }
But for some reason when I look for the cookie it is nowhere to be found after the redirect. Based on this question I was assuming that the method above would work.
Can anyone see why my cookie is not being created here?
 
     
    