Search code examples
asp.net-mvctwitter-bootstrapasp.net-mvc-4actionlinkglyphicons

Can't add the Bootstrap Glyphicon Components for the MVC action link


Im try to add the Bootstrap Glyphicon Components for the MVC action link ,but i cant add this , please give me a solution.

Action Link

 @Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = " btn-xs" })

Plus Glyph

 <span class="glyphicon glyphicon-plus"></span>

Solution

  • Add glyphicon glyphicon-plus class to ActionLink like following. Hope this will help you.

     @Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = "glyphicon glyphicon-plus btn-xs" })