HttpCookieCollection.Add Method

Adds the specified cookie to the cookie collection.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
void Add (
	HttpCookie^ cookie
)
public void Add (
	HttpCookie cookie
)
public function Add (
	cookie : HttpCookie
)
Not applicable.

Parameters

cookie

The HttpCookie to add to the collection.

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.

No code example is currently available or this language may not be supported.
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 Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: