asp.net中怎么向动态创建的RadioButtonList中添加按钮值

2024-11-27 03:06:02
推荐回答(1个)
回答(1):

TableRow row5 = new TableRow();
TableCell cell5 = new TableCell();
RadioButtonList text5 = new RadioButtonList ();
--------------------------------
读取数据集
for(..)
{
text5.Items .Add (new ListItem(string.format("{0}",行数据制定字段)));

}
--------------------------------
row5.Cells.Add(cell5);
Table1.Rows.Add(row5);

就这么个思路.有问题继续追问.
你先自己写一下.
希望对你有帮助