FormsAuthentication::CookieDomain Property
.NET Framework (current version)
Gets the value of the domain of the forms-authentication cookie.
Assembly: System.Web (in System.Web.dll)
The CookieDomain property value is set in the configuration file for an ASP.NET application by using the domain attribute of the configuration element. The CookieDomain property value determines the Domain that the cookie will be used for.
The following code example sets the domain attribute in the Web.config file.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx"
cookieless="UseCookies"
domain="contoso.com" />
</authentication>
.NET Framework
Available since 2.0
Available since 2.0
Show: