在Html.ActionLink中添加类

时间:2013-03-19 15:41:52

标签: asp.net-mvc

如何在此添加课程名称?

 Html.ActionLink(
       item.Name, 
       "GetProducts", 
       "Products", 
        new { CityName = item.CityName.UnderScore(), CategoryName = item.Name.UnderScore() },
        null);

感谢。

1 个答案:

答案 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" });