How can I include html entities in ActionLink. e.g. The case of »
below.
<p>@Html.ActionLink("Link Text »", "Index", new { }, new { @class = "btn btn-warning", @role = "button" })</p>
Use Url.Action instead
<p><a href=@Url.Action("Index") role="button"><span class="btn btn-warning">Link Text »</span></a></p>