This topic has not yet been rated - Rate this topic

AnonymousIdentificationSection.Cookieless Property

Gets or sets a value indicating whether to use cookies.

Namespace:  System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("cookieless", DefaultValue = HttpCookieMode.UseCookies)]
public HttpCookieMode Cookieless { get; set; }

Property Value

Type: System.Web.HttpCookieMode
One of the HttpCookieMode values. The default value is UseDeviceProfile.

The Cookieless property defines when a cookie should be used to maintain information about the user.

When the Cookieless property is set to UseCookies, the user's identifier is stored in a cookie. For more information, refer to HttpCookieMode.

NoteNote:

ASP.NET stores the user's anonymous identifier within the URI path (that is, it runs in cookieless mode) if the Cookieless property is set to one of the following values: UseUri; UseDeviceProfile when the browser profile indicates that cookies are not supported; or AutoDetect when the auto-detection process determines that the browser does not support cookies. Finally, if the size of the URI and the anonymous identifier exceeds the allowed length, the anonymous identifier is not applied.

The following code example demonstrates how to access the Cookieless property.

// Get Cookieless.
System.Web.HttpCookieMode cookieless =
    anonymousIdentificationSection.Cookieless;
Console.WriteLine("Cookieless: {0}",
          cookieless);

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.