HttpCookieCollection.Add Method
.NET Framework 2.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 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)
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: