This documentation is archived and is not being maintained.

HttpResponseWrapper::RedirectPermanent Method (String, Boolean)

Performs a permanent redirect from the requested URL to the specified URL, and provides the option to complete the response.

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)

public:
virtual void RedirectPermanent(
	String^ url, 
	bool endResponse
) override

Parameters

url
Type: System::String
The URL to redirect the request to.
endResponse
Type: System::Boolean
true to terminate the response; otherwise false. The default is false.

ExceptionCondition
ArgumentNullException

url is nullptr.

ArgumentException

url includes a newline character (\n).

The RedirectPermanent(String, Boolean) method overload provides a 301 HTTP status code in the response and also includes the URL to redirect the request to. This method overload provides the option to specify whether to terminate the response or to complete it 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

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: