Posted on: 5/28/2014 5:33:44 PM | Views : 340

I have a gridview, on that edit and delete buttons.
My requrement to find out the empid on deleting the record as confirmation box.
<asp:TemplateField> <ItemTemplate> <asp:LinkButton ID="lnkBtnEdit" runat="server" Text="Edit" CommandName="Edit"></asp:LinkButton>&nbsp; <asp:LinkButton ID="lbkBtnDelete" runat="server" Text="Delete" CommandName="Delete" OnClientClick ="return confirm('Are you sure? Do you want to Delete the record?');"></asp:LinkButton> </ItemTemplate> </asp:TemplateField> How to find out id value onClientClick confirmation box?
Thank you....

Go to the complete details ...