Control.GetRouteUrl Method (String, RouteValueDictionary)
.NET Framework (current version)
Gets the URL that corresponds to a set of route parameters and a route name.
Assembly: System.Web (in System.Web.dll)
Public Function GetRouteUrl ( routeName As String, routeParameters As RouteValueDictionary ) As String
Parameters
- routeName
-
Type:
System.String
The name of the route.
- routeParameters
-
Type:
System.Web.Routing.RouteValueDictionary
The route parameters.
Return Value
Type: System.StringThe URL that corresponds to the specified route parameters and route name.
This method is provided for coding convenience. It is equivalent to calling the RouteCollection.GetVirtualPath(RequestContext, String, RouteValueDictionary) method.
The following example shows how to call this method to get the URL of a route that is named Product and has parameters that are named productid and category. This example assumes that you have created a HyperLink control that is named HyperLink1.
.NET Framework
Available since 4.0
Available since 4.0
Show: