how to add checkbox column to gridview
foreach (GridViewRow objRow in GridView1.Rows)
{
TableCell tcCheckCell = new TableCell();
CheckBox chkCheckBox = new CheckBox();
tcCheckCell.Controls.Add(chkCheckBox);
objRow.Cells.Add( tcCheckCell);
}
how to add the objrow to gridview again
or any other choice