Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
can we use image instead of button in asp.net using C#, i want to use image button instead of button control of asp.net. how can i do it??
Posted
Comments
manognya kota 15-Feb-12 12:43pm    
For what do you want to use image button?

 
Share this answer
 
 
Share this answer
 
Yes you can use image button

VB
<asp:ImageButton ID="btnIamge" runat="server" ImageUrl="mybutton.jpg"
            onclick="btnIamge_Click" />


in c# code
C#
protected void btnIamge_Click(object sender, ImageClickEventArgs e)
    {

    }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900