我有以下操作链接,该链接指向视图中的特定部分。
Html.ActionLink
如何向此button
添加样式和类,使其看起来像new { @class = "button btn-flat", @style = "border-radius: 14px;" }
?
我觉得我可以添加......
@Html.ActionLink("Early Out Billing", "Solutions", "Home", new { @class = "button btn-flat", @style = "border-radius: 14px;" }, null, "EOB", null, null)
但我无法让它像这样工作......
SQL> select translate('abc+de@fg-hq!m', 'a+-@!', etc.) from dual;
TRANSLATE(
----------
abcdefghqm
答案 0 :(得分:1)
htmlAttributes是ActionLink构造函数中的最后一个值。
@Html.ActionLink("Morn Info",
"Solutions",
"Home",
null,
null,
"EOB",
null,
new { @class = "button btn-flat", @style = "border-radius: 14px;" })