HttpResponse::RedirectLocation Property
.NET Framework (current version)
Gets or sets the value of the HTTP Location header.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::String^The absolute URI that is transmitted to the client in the HTTP Location header.
| Exception | Condition |
|---|---|
| HttpException | The HTTP headers have already been written. |
The following example shows how to use this property to specify the redirect URL when you code a permanent redirect by using the HTTP 301 response code.
Response.StatusCode = 301; Response.Status = "301 Moved Permanently"; Response.RedirectLocation = "http://www.newurl.com "; Response.End();
.NET Framework
Available since 1.1
Available since 1.1
Show: