Smart    Lucky

Smart Lucky

  • NA
  • 555
  • 628.1k

Cookie Collection

Aug 6 2011 3:51 AM
Hi
How can i read the cookie collection.....................?

   HttpCookie aCookie = new HttpCookie("lastVisit");
        aCookie.Value = DateTime.Now.ToString();
        aCookie.Value = "Khuda bux";
        aCookie.Value = "Hidaya Trust Jamshoro";
        aCookie.Value = "Pakistan";
        aCookie.Expires = DateTime.Now.AddDays(1);
        Response.Cookies.Add(aCookie);

        //Response.Write(aCookie.Value);
        foreach (HttpCookieCollection ch in aCookie.Values)
            Response.Write(ch);

Answers (2)