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>
<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 ...