I was following a post on here to add a glyph to a glyph to an ActionLink however I get "/Dashboard%20class=" this as my URL when all I want is to be redirected to the action that I specified without the %20class which is giving me errors
Here is the post I have been following Insert Glyphicons bootstrap in @Html.ActionLink mvc asp.net
my HTML goes as follows:
<li><a href="@Url.Action("Index", "Dashboard") class="btn btn-warning">
Dashboard
<span class="glyphicon glyphicon-home" />
</a>
</li>