HttpResponse.RedirectLocation プロパティ

定義

HTTP Location ヘッダーの値を取得または設定します。

public:
 property System::String ^ RedirectLocation { System::String ^ get(); void set(System::String ^ value); };
public string RedirectLocation { get; set; }
member this.RedirectLocation : string with get, set
Public Property RedirectLocation As String

プロパティ値

HTTP Location ヘッダーのクライアントに送信される絶対 URI。

例外

HTTP ヘッダーは既に書き込まれています。

次の例は、HTTP 301 応答コードを使用して永続的なリダイレクトをコーディングするときに、このプロパティを使用してリダイレクト URL を指定する方法を示しています。

Response.StatusCode = 301;
Response.Status = "301 Moved Permanently";
Response.RedirectLocation = "http://www.newurl.com ";
Response.End();

適用対象