HttpResponseWrapper.RedirectToRoutePermanent Method (String)
.NET Framework (current version)
Performs a permanent redirection from a requested URL to a new URL by using the specified route name.
Assembly: System.Web (in System.Web.dll)
Parameters
- routeName
-
Type:
System.String
The name of the route.
| Exception | Condition |
|---|---|
| InvalidOperationException | No route corresponds to the specified route name. |
| HttpException | Redirection was attempted after the HTTP headers had been sent. |
This method is provided for coding convenience. It is equivalent to calling the RedirectPermanent(String, Boolean) method with the second parameter set to false.
This method converts the route name that is passed in routeName to a URL by using the RouteCollection.GetVirtualPath method.
ASP.NET performs the redirection by returning a 301 HTTP status code.
.NET Framework
Available since 4.5
Available since 4.5
Show: