HttpCookie.Value Property

 

Gets or sets an individual cookie value.

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

Public Property Value As String

Property Value

Type: System.String

The value of the cookie. The default value is a null reference (Nothing in Visual Basic).

The following code example sets the value of an existing cookie to "abc123".

MyCookie.Value = "abc123"

.NET Framework
Available since 1.1
Return to top
Show: