HttpResponseWrapper.RedirectToRoute Method (String, RouteValueDictionary)
.NET Framework (current version)
Redirects a request to a new URL by using the specified route name and route parameter values.
Assembly: System.Web (in System.Web.dll)
public override void RedirectToRoute( string routeName, RouteValueDictionary routeValues )
Parameters
- routeName
-
Type:
System.String
The name of the route.
- routeValues
-
Type:
System.Web.Routing.RouteValueDictionary
The route parameter values.
| Exception | Condition |
|---|---|
| InvalidOperationException | No route corresponds to the specified route parameters. |
| HttpException | Redirection was attempted after the HTTP headers had been sent. |
This method is provided for coding convenience. It is equivalent to calling the Redirect(String, Boolean) method with the second parameter set to false.
The RouteCollection.GetVirtualPath method is called to determine the URL.
ASP.NET performs the redirection by returning a 302 HTTP status code.
.NET Framework
Available since 4.5
Available since 4.5
Show: