Click here to Skip to main content
15,920,111 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to add link button dynamically in gridview and clik on link button i want to perform some action
Posted
Updated 8-Jun-12 21:55pm
v2
Comments
Sandeep Mewara 9-Jun-12 13:43pm    
Repost!

1 solution

XML
<asp:TemplateField>
            <ItemTemplate>
                        <asp:ImageButton ID="ButtonAdd" runat="server" ImageUrl="~/images/Add_Drop.png" onclick="ButtonAdd_Click" />
            </ItemTemplate>
            </asp:TemplateField>


Try this one...
Hope it works
 
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