In the following code I would like to include a Bootstrap glyphicons after the "Animal Name".
@Ajax.ActionLink("Animal Name", "_Index", new { sortOrder = ViewBag.NameSortParam, searchString = Request["searchString"] }, new AjaxOptions
{
HttpMethod = "GET",
UpdateTargetId = "PartialTable",
InsertionMode = InsertionMode.Replace
})
Is it possible?? If not possible, is there any other alternative solution like:
<a href="@Url.Action("Index", "Animal", new {sortOrder = ViewBag.NameSortParam, searchString = Request["searchString"] })">
<span style="font-size:18px">Animal Name</span>
<i class="glyphicon glyphicon-triangle-bottom"></i>
</a>
Which is used as an alternative method to use Bootstrap Glyphicons with @Html.ActionLink() Method!