How to use this code in C# to delete current record?
DataRow row = dataSet11.Tables["Student"]["myColumn"];
row.Delete();
Printable View
How to use this code in C# to delete current record?
DataRow row = dataSet11.Tables["Student"]["myColumn"];
row.Delete();
After you do that, call the dataadapter.Update method on the dataset to send the changes to the database, then rebind the datagrid.