次の方法で共有


HttpRuntimeSection.UseFullyQualifiedRedirectUrl プロパティ

定義

クライアント側のリダイレクトが絶対パスであるかどうかを示す値を取得または設定します。

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

プロパティ値

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内で) 完全修飾されているかどうか、または相対リダイレクトがクライアントに送信されるかどうかを示します。

注意

一部のブラウザーでは、この値が の場合、Cookie レス セッションでのページの読み込みに問題が false発生することがあります。

適用対象