Possible Duplicate:
Text on an Image button in c# asp.net 3.5
I have an image button. I want to add a text under it. I’m using VS 2010. Can anyone tell me how to add text to a image button??
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="Images/Icon_Variante1.jpg" />
If you want to add text under the button, you should add a label after the button. Then put the label and the button into a container and change styles for it. An example below