Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Is it possible to store more than one value in HttpCookie ...
HttpCookie MyCookie = new HttpCookie("Cookie1"); MyCookie.Values["Val1"] = "1"; MyCookie.Values["Val2"] = "2"; MyCookie.Values["Val3"] = "3"; Response.Cookies.Add(MyCookie);