グリッド ビューのデータ ソースとして datatable を使用しています
DataTable table = new DataTable();
table.Columns.Add("Dosage", typeof(int));
table.Columns.Add("Drug", typeof(string));
table.Columns.Add("Patient", typeof(string));
table.Columns.Add("Select",typeof(bool));
//
// Here we add five DataRows.
//
table.Rows.Add(25, "Indocin", "David");
table.Rows.Add(50, "Enebrel", "Sam");
table.Rows.Add(10, "Hydralazine", "Christoff");
table.Rows.Add(21, "Combivent", "Janet");
table.Rows.Add(100, "Dilantin", "Melanie");
GridView2.DataSource = table;
GridView2.DataBind();
ページの読み込み時に、グリッドに新しい列を作成してラジオ ボタンを追加したい
実際には、データベースで選択したチェックボックスの行の値を送信したい..