如何在此处添加类名?
Html.ActionLink(
item.Name,
"GetProducts",
"Products",
new { CityName = item.CityName.UnderScore(), CategoryName = item.Name.UnderScore() },
null);
谢谢。
如何在此处添加类名?
Html.ActionLink(
item.Name,
"GetProducts",
"Products",
new { CityName = item.CityName.UnderScore(), CategoryName = item.Name.UnderScore() },
null);
谢谢。
使用这个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" });