的结果
@Html.RouteLink("link-name" , "route-name" , new
{
id = "8850" ,
title = "sample-title" ,
description = "sample-description"
}
)
是
<a href="/8850/sample-title/sample-description/">link-name</a>
是否有任何只提供href
地址的扩展方法?
答案 0 :(得分:4)
您可以使用“Url.Action”:
UrlHelper类:
Action(string actionName, string controllerName, RouteValueDictionary routeValues);
对于其他重载,请检查:
<强> UrlHelper.Action Method 强>
例如
<a href="@Url.Action(actionName, controllerName, routeValues)">link-name</a>