0

ここにクラス名を追加するにはどうすればよいですか?

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

ありがとう。

4

1 に答える 1

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" });
于 2013-03-19T15:42:31.707 に答える