Skip to main content
.NET Framework Class Library
HttpResponse..::.RedirectPermanent Method (String, Boolean)

Performs a permanent redirection 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)
Syntax
Public Sub RedirectPermanent ( _
	url As String, _
	endResponse As Boolean _
)
public void RedirectPermanent(
	string url,
	bool endResponse
)
public:
void RedirectPermanent(
	String^ url, 
	bool endResponse
)
member RedirectPermanent : 
        url:string * 
        endResponse:bool -> unit 

Parameters

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

url is nullNothingnullptra null reference (Nothing in Visual Basic).

ArgumentException

url includes a newline character (\n).

Remarks

The RedirectPermanent(String, Boolean) method overload provides a 301 HTTP status code in the response and includes the URL to redirect the request to. This method overload also provides the option to specify whether to terminate or to complete the response after the redirection has been performed. A 301 HTTP status code is a standard code in an HTTP response. It indicates that a permanent redirection exists, and it provides the redirection location.

Version Information

.NET Framework

Supported in: 4
Platforms

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.