我有一个视图.cshtml页面的代码段,如:
@Html.ActionLink("Add Charts of Account", "Save")
运行模式我可以看到以下HTML代码:
<a href="/ChartsOfAccount/Save">Add Charts of Account</a>
但我想关注html代码:
<a id="lblAddNode" href="/ChartsOfAccount/Save">Add Charts of Account</a>
有可能吗?如果可能,请用示例代码说明。
答案 0 :(得分:1)
有一个overload of the ActionLink helper,可让您指定routeValues
和htmlAttributes
:
@Html.ActionLink(
"Add Charts of Account", // linkText
"Save", // actionName
null, // routeValues
new { id = "lblAddNode" } // htmlAttributes
)