HttpCookieCollection.Add Method
.NET Framework 3.0
Adds the specified cookie to the cookie collection.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
Any number of cookie collections can exist within an application, but only the collection referenced by the intrinsic Cookies object is sent to the client.
The Add method allows duplicate cookies in the cookie collection. Use the Set method to ensure the uniqueness of cookies in the cookie collection.
The following example creates a new cookie collection and a new cookie named "LastVisit", sets the value of the cookie to the current date and time, and adds the cookie to the new collection.
HttpCookieCollection myCookieCollection = new HttpCookieCollection();
HttpCookie myCookie = new HttpCookie("LastVisit");
myCookie.set_Value(DateTime.get_Now().toString());
myCookieCollection.Add(myCookie);
var myCookieCollection : HttpCookieCollection = new HttpCookieCollection() var myCookie : HttpCookie = new HttpCookie("LastVisit") myCookie.Value = DateTime.Now.ToString() myCookieCollection.Add(myCookie)
Community Additions
ADD
Show: