FormsAuthentication.DefaultUrl Property

Definition

Gets the URL that the FormsAuthentication class will redirect to if no redirect URL is specified.

public:
 static property System::String ^ DefaultUrl { System::String ^ get(); };
public static string DefaultUrl { get; }
static member DefaultUrl : string
Public Shared ReadOnly Property DefaultUrl As String

Property Value

The URL that the FormsAuthentication class will redirect to if no redirect URL is specified. The default is "default.aspx."

Examples

The following code example sets the defaultUrl attribute in the Web.config file.

<authentication mode="Forms">
  <forms loginUrl="member_login.aspx"
    defaultUrl="index.aspx" />
</authentication>

Remarks

The DefaultUrl property value is set in the configuration file for an ASP.NET application by using the defaultUrl attribute of the forms configuration element. The DefaultUrl property is used by the RedirectFromLoginPage method if no return URL is included in the request. Similarly, the GetRedirectUrl method will return the DefaultUrl if no return URL is included in the request.

Applies to

See also