I want to add new row to a gridview. The value of each cell comes from the bottom blank cells. How to grab the cell's value?
private void AddRow_Click(object sender, EventArgs e)
{
DataTable dt = ds.Tables["test"];
DataRow dr = dt.NewRow();
// not sure how to add
}
Please also notice there is a checkbox in a column.
Thanks.