FormsAuthentication.LoginUrl 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 URL for the login page that the FormsAuthentication class will redirect to.
public:
static property System::String ^ LoginUrl { System::String ^ get(); };
public static string LoginUrl { get; }
static member LoginUrl : string
Public Shared ReadOnly Property LoginUrl As String
Property Value
The URL for the login page that the FormsAuthentication class will redirect to. The default is "login.aspx."
Examples
The following code example sets the loginUrl
attribute in the Web.config file.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx"
defaultUrl="index.aspx" />
</authentication>
Remarks
The LoginUrl property value is set in the configuration file for an ASP.NET application by using the loginUrl
attribute of the forms configuration element. The LoginUrl is used by the RedirectToLoginPage method.