共用方式為


PassportAuthentication.RedirectUrl 屬性

定義

取得或設定要求重新導向 (Redirect) 至的 URL。

public:
 property System::String ^ RedirectUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("redirectUrl", DefaultValue="internal")]
[System.Configuration.StringValidator]
public string RedirectUrl { get; set; }
[<System.Configuration.ConfigurationProperty("redirectUrl", DefaultValue="internal")>]
[<System.Configuration.StringValidator>]
member this.RedirectUrl : string with get, set
Public Property RedirectUrl As String

屬性值

要求重新導向至之網頁的 URL。

屬性

範例

下列程式碼範例示範如何使用 RedirectUrl 屬性。


// Get the passport redirect URL
string redirectUrl = passport.RedirectUrl;

// Set passport redirect Url.
passport.RedirectUrl = "passportLogin.aspx";

if (!authenticationSection.SectionInformation.IsLocked)
  configuration.Save();
' Get the passport redirect URL
Dim redirectUrl As String = passport.RedirectUrl

' Set the passport redirect Url.
passport.RedirectUrl = "passportLogin.aspx"

If Not authenticationSection.SectionInformation.IsLocked Then
  configuration.Save()
End If

備註

RedirectUrl指定需要 Passport 驗證且使用者未使用 Passport 驗證登入時,必須重新導向要求之頁面的 URL。

適用於