我想更改下面ActionLink
的设计。
请帮助我!
@Html.ActionLink("Edit", "Edit", new { id = Model.purchaseId })
答案 0 :(得分:2)
我猜你想要
@Html.ActionLink("Edit", "Edit", null, new{id=Model.purchaseId, @class="mycssclass"})
您使用的超载有" routeValues"作为第三个参数。我的版本忽略了这一点,并为htmlAttributes添加了第4个参数。
此外,如果您想使用保留字(例如class
)作为属性,则可以使用@
转义它们。
查看MSDN上的各种重载。