Hi
I'm using bootstrap and I find some cool buttons on this website
http://www.plugolabs.com/twitter-bootstrap-button-generator-with-awesome-font/
How can I create a button like this ones for using on asp.net?
Please see the code for this one:
<button class="btn btn-primary btn-large"><i class="icon-user"></i> Login</button>
One button on asp.net as a code like this one
<asp:Button ID="Button1" runat="server" CssClass="btn btn-primary btn-large" Text="Login" OnClick="Button1_Click" />
How can I show the icon?
Thank you
Go to the complete details ...