Click here to Skip to main content
15,896,456 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
after seting autogeneratedelete property 'true',what is next step after that.if any code is require to do ,then help me with code,because i don't know what is next step after that.
Posted
Comments
Member 12971167 5-Feb-17 8:48am    
how to update image using gridview autogenegateEditButton="true" and DataSource="?"

1 solution

it depends on how you're setting the datasource for the gridview. If you are using a datasource control, such as a SqlDataSource or EntityDataSource, and you have them configured to handle deletion of data then you should be good to go. The gridview will automatically try to use the delete function defined by the datasource. If you are manually setting the datasource for the gridview then you can use the gridview's RowCommand event and handle the CommandName "Delete" ("Update" for edit) in the code behind.

C#
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "Delete")
    {
        // Handle Delete
    }
}


Your gridview should look something like this:

ASP.NET
<asp:gridview id="GridView1" 
              onrowcommand="GridView1_RowCommand"
              runat="server" // Rest of gridview
 
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