FormsAuthentication::LoginUrl Property
.NET Framework (current version)
Gets the URL for the login page that the FormsAuthentication class will redirect to.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::String^The URL for the login page that the FormsAuthentication class will redirect to. The default is "login.aspx."
The LoginUrl property value is set in the configuration file for an ASP.NET application by using the loginUrl attribute of the configuration element. The LoginUrl is used by the RedirectToLoginPage method.
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>
.NET Framework
Available since 2.0
Available since 2.0
Show: