How do I put a Bootstrap Glyphicon inside an asp:Button in ASP.Net?
You have to use asp:LinkButton instead of a asp:Button, here is how it works for me using Bootstrap 3 in an ASP.NET web-application: From your code you can make the following work: <asp:LinkButton ID=”btnRandom” runat=”server” CssClass=”btn btn-primary” OnClick=”btnRandom_Click”> <span aria-hidden=”true” class=”glyphicon glyphicon-refresh”></span> </asp:LinkButton> Here is an example of what I use for a Submit Button … Read more