43.

I have a gridview displaying customer details like name, Shipping address, contact, orders placed etc. The gridview also has a functionality of editing and deleting records. The edit /delete functionality is provided by using sql Datasource Edit and Delete commands.
Before deleting a gridview row, I want to display a message to the user asking him whether he really wants to delete a particular row.
Which gridview event should be used in this case to write a code in.

OnRowDeleting event is raised when you click on the delete button in the gridview but before gridview deletes a row. This is when we would like to ask user whether he really wants to delete a particular row or not.