如何在此添加课程名称?
Html.ActionLink(
item.Name,
"GetProducts",
"Products",
new { CityName = item.CityName.UnderScore(), CategoryName = item.Name.UnderScore() },
null);
感谢。
答案 0 :(得分:2)
使用此Html.ActionLink重载方法
public static MvcHtmlString ActionLink(
this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
RouteValueDictionary routeValues,
IDictionary<string, Object> htmlAttributes
)
你的例子
Html.ActionLink(
item.Name,
"GetProducts",
"Products",
new { CityName = item.CityName.UnderScore(), CategoryName = item.Name.UnderScore() },
new { @class="some_class" });