I'm a beginner with bootstrap/asp.net and I think I might be making a mistake somewhere. My goal is to have a bootstrap glyphicon appear next to my button. I believe I am not able to use asp:Button, but instead should use LinkButton.
Here is the code:
//Head
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
//Body
<form id="defaultform" runat="server">
<div class="container">
<asp:LinkButton ID="ButtonGetProduct"
runat="server"
CssClass="btn btn-primary btn-lg"
OnClick="ButtonGetProductName_Click">
<span class="glyphicon glyphicon-barcode"></span>Register
</asp:LinkButton>
</div>
</form>
UPDATE: I just included in the header, then changed "glyphicon glyphicon-barcode" to "fa fa-barcode".. it's working perfectly now!