hello,
i am having a datagrid n a checkbox colmn in it.. I get the data in datagrid from the database ...after that when i check specific checkbox those row should be deleted from the datagrid / database ....i was writing the code for the same but am confused as to how to proceed further.....help would be appreciated....
My datagrid name is dg2
My checkbox column name is clm.
private void cmddelete_Click(object sender, EventArgs e)
{
string data = String.Empty;
foreach (DataGridViewRow row in dg2.Rows)
{
}