I wanted to create a search button on my form that uses a bootstrap glyphicon rather than the word "Search"
Unfortunately, ASPX only renders the Text
of a button as a string so I can't add the glyphicon to the button with that (see below):
<asp:Button runat="server" id="btnSearch" Text="<i class='glyphicon glyphicon-search'></i>">
</asp:Button>
This renders the button with the whole tag written on the button as you see it in the code which is obviously not what I'm looking for.
How can I render this search button to show the glyphicon rather than a text string?