8

I want to use Font Awesome Icons with a button along the text. For this purpose...

When I use as :

<asp:Button Text="Submit" ID="btnSubmit" runat="server" />

it is not possible to have any icon text inside the tags.

So I am using as :

  <button runat="server" id="btnSubmit">
           Submit <i class="fa fa-forward" aria-hidden="true"></i>
  </button>

But in this method, the problem is I can't use the 'ValidationGroup' property.

Please suggest me anyway and tell What I am missing.

Karan Singh
  • 876
  • 1
  • 6
  • 12
Bholu Bhaiya
  • 167
  • 1
  • 1
  • 12

1 Answers1

16

You can use LinkButton. It supports HTML code rendering.

<asp:LinkButton runat="server" ID="btnSubmit" class="btn btn-mini">
    Submit <i class="fa fa-forward" aria-hidden="true"></i>
</asp:LinkButton>
Omar Muscatello
  • 1,256
  • 14
  • 25