HttpResponse.RedirectLocation 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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();