FormsAuthentication.DefaultUrl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取在没有指定重定向 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 。