ここにクラス名を追加するにはどうすればよいですか?
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" });