Вы можете создать метод расширения для его обработки
public static string PrintRouteLink (this HtmlHelper helper, string routeName, int id)
{
UrlHelper url = new UrlHelper(helper.ViewContext.RequestContext);
return helper.RouteLink(url.RouteUrl(routeName,new { id = id}),routeName,new { id = id});
}
Тогда вы можете использовать:
<%= Html.PrintRouteLink(routeName,75) %>