Control::GetRouteUrl Method (String^, Object^)
Gets the URL that corresponds to a set of route parameters and a route name.
Assembly: System.Web (in System.Web.dll)
Parameters
- routeName
-
Type:
System::String^
The name of the route.
- routeParameters
-
Type:
System::Object^
The route parameters.
Return Value
Type: System::String^The 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. This method converts the object that is passed in routeParameters to a RouteValueDictionary object by using the RouteValueDictionary::RouteValueDictionary(Object^) constructor.
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.
Available since 4.0