This documentation is archived and is not being maintained.
HttpResponse::RedirectToRoute Method (String)
Visual Studio 2010
Redirects a request to a new URL by using a 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 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.
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 302 HTTP status code.
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: