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

属性值

String

通过 HTTP Location 标头传输到客户端的绝对 URI。

例外

已编写 HTTP 标头。

示例

以下示例演示如何使用此属性在使用 HTTP 301 响应代码对永久重定向进行编码时指定重定向 URL。

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

适用于