FormsAuthenticationConfiguration.LoginUrl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置请求的重定向 URL。
public:
property System::String ^ LoginUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("loginUrl", DefaultValue="login.aspx")]
[System.Configuration.StringValidator(MinLength=1)]
public string LoginUrl { get; set; }
[<System.Configuration.ConfigurationProperty("loginUrl", DefaultValue="login.aspx")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.LoginUrl : string with get, set
Public Property LoginUrl As String
属性值
当用户未进行身份验证时要将请求重定向到的 URL。 默认值为 login.aspx。
- 属性
示例
下面的代码示例演示如何访问 LoginUrl。 请参阅类主题中的 FormsAuthenticationConfiguration 代码示例,了解如何获取 节。
// Get the current LoginUrl.
string currentLoginUrl = formsAuthentication.LoginUrl;
// Set the LoginUrl.
formsAuthentication.LoginUrl = "newLoginUrl";
' Get the current LoginUrl.
Dim currentLoginUrl As String =
formsAuthentication.LoginUrl
' Set the LoginUrl.
formsAuthentication.LoginUrl = "newLoginUrl"
注解
属性 LoginUrl 指定未对用户进行身份验证或不存在有效身份验证 Cookie 时请求的重定向 URL。