If i use below , button display bigger.
<a href="#" class="btn btn-primary"><i class="icon-plus"></i>Add</a>
If i use below , button display smaller than above code.
@Html.ActionLink("Add", "xx", "Law", new { _lawfileid = -1, baseappid = ((ObjectModelLibrary.Law)ViewData["currentLaw"]).LawID }, new { @class = "btn btn-primary icon-plus" })
How can i change Html.Actionlink like a href i ?
What is difference between actionlink and href or how can i set same size for both ?