我有一組按鈕如何在mvc actionlink語法中添加引導映像?
<div ><span class="font-icon-group">
@Html.ActionLink("Group button", "Index", "Groups",null ,new {@class="btn", @id="A" })
</div>
下面的代碼,但這是錯誤的,因爲字體圖標組羣鍵以外即將到來。
我怎麼能把它放在按鈕裏面請引導我(mvc語法代碼需要更改上面的代碼)。
與純HTML它工作正常代碼HTML是以下幾點:
<div>
<a class="btn" href="#" id="A1"><span class="font-icon-group"></span> All Groups</a></div>
請指導改變語法MVC。