FormsAuthentication.FormsCookiePath 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 path for the forms-authentication cookie.
public:
static property System::String ^ FormsCookiePath { System::String ^ get(); };
public static string FormsCookiePath { get; }
static member FormsCookiePath : string
Public Shared ReadOnly Property FormsCookiePath As String
Property Value
The path of the cookie where the forms-authentication ticket information is stored. The default is "/".
Examples
The following code example sets the FormsCookiePath property value by using the path
attribute in the Web.config file.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx"
cookieless="UseCookies"
path="/MyApplication" />
</authentication>
Remarks
The FormsCookiePath property value is set in the configuration file for an ASP.NET application using the path
attribute of the forms configuration element. The FormsCookiePath specifies the Path for the cookie that stores the FormsAuthenticationTicket information.