FormsAuthentication.FormsCookieName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the cookie used to store the forms-authentication ticket.
public:
static property System::String ^ FormsCookieName { System::String ^ get(); };
public static string FormsCookieName { get; }
static member FormsCookieName : string
Public Shared ReadOnly Property FormsCookieName As String
Property Value
The name of the cookie used to store the forms-authentication ticket. The default is ".ASPXAUTH".
Examples
The following code example sets the FormsCookieName property value by using the name
attribute in the Web.config file.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx"
cookieless="UseCookies"
name=".ASPXFORMSAUTH" />
</authentication>
Remarks
The FormsCookieName property value is set in the configuration file for an ASP.NET application by using the name
attribute of the forms configuration element. The FormsCookieName is used to reference the cookie that stores the FormsAuthenticationTicket information.