Xpode.com        Click here to Print this article.

Ask Confirmation when delete the record

Ask Confirmation when delete the record from grid view or data grid

There are many conditions where we want to confirm from user that he want to delete the record from database or not when user clicks on delete button in Grid view, datalist or datagrid. Then there is a way to do this with javascript. We will show a alert box.to user that if he clicks on Yes then record will delete, other wise not.

<asp:TemplateField>
<ItemTemplate>
<asp:LinkButtonID="LinkButton1"runat="server"
OnClientClick="return confirm('Are you sure to delete this record?');"
CommandName="Delete">Delete Comment</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
When user will click on the delete button then he will have to confirm the deletion.If he will click on yes button then the record will be deleted otherwise record will not be deleted.



http://
http://

Contributed by:
Rohit kakria
I am software developer, moderator of xpode.com

Resourse address on xpode.com
http://www.xpode.com/Print.aspx?Articleid=93

Click here to go on website