AnonymousIdentificationSection.CookiePath Property

 

Gets or sets the path where the cookie is stored.

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

<ConfigurationPropertyAttribute("cookiePath", DefaultValue := "/")>
<StringValidatorAttribute(MinLength := 1)>
Public Property CookiePath As String

Property Value

Type: System.String

The path of the HTTP cookie to use for the user's anonymous identification. The default value is a slash (/), which represents the Web application root.

The CookiePath property indicates where the authentication cookie resides and is transmitted along with the authentication cookie itself.

The following code example shows how to access the CookiePath property.

' Get CookiePath.
Dim cookiePath As String = _
anonymousIdentificationSection.CookiePath
Console.WriteLine("Cookie path: {0}", cookiePath)

.NET Framework
Available since 2.0
Return to top
Show: