FormsAuthentication.DefaultUrl Property
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 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
The URL that the FormsAuthentication class will redirect to if no redirect URL is specified. The default is "default.aspx."
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>
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.
Product | Versions |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: