FormsAuthenticationConfiguration.LoginUrl Property

Definition

Gets or sets the redirection URL for the request.

public:
 property System::String ^ LoginUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("loginUrl", DefaultValue="login.aspx")]
[System.Configuration.StringValidator(MinLength=1)]
public string LoginUrl { get; set; }
[<System.Configuration.ConfigurationProperty("loginUrl", DefaultValue="login.aspx")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.LoginUrl : string with get, set
Public Property LoginUrl As String

Property Value

The URL the request is redirected to when the user is not authenticated. The default value is login.aspx.

Attributes

Examples

The following code example shows how to access the LoginUrl. Refer to the code example in the FormsAuthenticationConfiguration class topic to learn how to get the section.

// Get the current LoginUrl.
string currentLoginUrl = formsAuthentication.LoginUrl;

// Set the LoginUrl. 
formsAuthentication.LoginUrl = "newLoginUrl";
' Get the current LoginUrl.
  Dim currentLoginUrl As String = _
  formsAuthentication.LoginUrl

' Set the LoginUrl. 
formsAuthentication.LoginUrl = "newLoginUrl"

Remarks

The LoginUrl property specifies the redirection URL for the request when the user is not authenticated or when no valid authentication cookie exists.

Applies to

See also