FormsAuthentication.DefaultUrl 属性

定义

获取在没有指定重定向 URL 时 FormsAuthentication 类将重定向到的 URL。

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

属性值

在没有指定重定向 URL 时 FormsAuthentication 类将重定向到的 URL。 默认值为“default.aspx”。

示例

下面的代码示例在 Web.config 文件中设置 defaultUrl 属性。

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

注解

通过使用 DefaultUrlforms 配置元素的 属性,在 ASP.NET 应用程序的defaultUrl配置文件中设置属性值。 DefaultUrl如果请求中不包含返回 URL,RedirectFromLoginPage则 方法将使用 属性。 同样,如果请求中不包含返回 URL, GetRedirectUrl 则 方法将返回 DefaultUrl

适用于

另请参阅