FormsAuthentication.DefaultUrl Property
.NET Framework (current version)
Gets the URL that the FormsAuthentication class will redirect to if no redirect URL is specified.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.StringThe URL that the FormsAuthentication class will redirect to if no redirect URL is specified. The default is "default.aspx."
The DefaultUrl property value is set in the configuration file for an ASP.NET application by using the defaultUrl attribute of the 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.
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>
.NET Framework
Available since 2.0
Available since 2.0
Show: