HttpResponseBase::RedirectPermanent Method (String^, Boolean)
.NET Framework (current version)
Performs a permanent redirect from the requested URL to the specified URL, and provides the option to complete the response.
Assembly: System.Web (in System.Web.dll)
Parameters
- url
-
Type:
System::String^
The location to which the request is redirected.
- endResponse
-
Type:
System::Boolean
true to terminate the response; otherwise false. The default is false.
| Exception | Condition |
|---|---|
| NotImplementedException | Always. |
The RedirectPermanent(String^, Boolean) overload method provides a 301 HTTP status code in the response and includes the URL to redirect the request to. This overload also provides the option to specify whether to terminate or to complete the response after the redirect has been performed. A 301 HTTP status code is a standard code in an HTTP response. It indicates that a permanent redirect exists, and it provides the redirect location.
.NET Framework
Available since 4.0
Available since 4.0
Show: