0
HI. Thanks.
But I want to delete one row. like gridview delete button
0
Hi,
U can do that by using this code.
GridViewRow row = default(GridViewRow);
foreach (var row in GridView1.Rows)
{
CheckBox ChkBoxCell = row.FindControl("chkComplete");
if (ChkBoxCell.Checked == true)
{
// make the delete operation here. here u can find any bound column which contains the unique id for the deletion.
}
}
Happy Coding!!