HttpRuntimeSection.UseFullyQualifiedRedirectUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示用戶端重新導向是否為完整的。
public:
property bool UseFullyQualifiedRedirectUrl { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("useFullyQualifiedRedirectUrl", DefaultValue=false)]
public bool UseFullyQualifiedRedirectUrl { get; set; }
[<System.Configuration.ConfigurationProperty("useFullyQualifiedRedirectUrl", DefaultValue=false)>]
member this.UseFullyQualifiedRedirectUrl : bool with get, set
Public Property UseFullyQualifiedRedirectUrl As Boolean
屬性值
如果用戶端重新導向為完整的則為 true
,否則為 false
。 預設值是 false
。
- 屬性
範例
下列範例將示範如何使用 UseFullyQualifiedRedirectUrl 屬性。
// Get the UseFullyQualifiedRedirectUrl property value.
Response.Write("UseFullyQualifiedRedirectUrl: " +
configSection.UseFullyQualifiedRedirectUrl + "<br>");
// Set the UseFullyQualifiedRedirectUrl property value set to true.
configSection.UseFullyQualifiedRedirectUrl = true;
' Get the UseFullyQualifiedRedirectUrl property value.
Response.Write("UseFullyQualifiedRedirectUrl: " & _
configSection.UseFullyQualifiedRedirectUrl & "<br>")
' Set the UseFullyQualifiedRedirectUrl property value set to true.
configSection.UseFullyQualifiedRedirectUrl = True
備註
屬性 UseFullyQualifiedRedirectUrl 會指出用戶端重新導向是否為格式 http://server/path
) 的完整 (,還是要改為將相對重新導向傳送至用戶端。
注意
當此值為 false
時,某些瀏覽器可能會在無 Cookie 會話中載入頁面時發生問題。