Freigeben über


HttpRuntimeSection.UseFullyQualifiedRedirectUrl Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die clientseitigen Umleitungen vollqualifiziert sind, oder legt diesen fest.

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

Eigenschaftswert

true, wenn clientseitige Umleitungen vollqualifiziert sind, andernfalls false. Der Standardwert ist false.

Attribute

Beispiele

Im folgenden Beispiel wird die Verwendung der UseFullyQualifiedRedirectUrl-Eigenschaft veranschaulicht.

// 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

Hinweise

Die UseFullyQualifiedRedirectUrl -Eigenschaft gibt an, ob clientseitige Umleitungen voll qualifiziert sind (im Format http://server/path) oder ob stattdessen relative Umleitungen an den Client gesendet werden.

Hinweis

Einige Browser haben möglicherweise Probleme beim Laden von Seiten in cookielosen Sitzungen, wenn dieser Wert ist false.

Gilt für: