在ASP.NET网页中如何动态添加选择按钮组
各位网友好在中,可以添加多个选择按钮组,如
<asp:RadioButtonList ID="radl1" ……> </asp:RadioButtonList>
<asp:RadioButtonList ID="radl2" ……> </asp:RadioButtonList>
.......................
但必须一个一个按钮组写出,能不能动态添加这些按钮组,
for(i=1;i<=m;i++)
........
根据i的取值,添加按钮按钮组,让按钮组的ID与i有关
请网友指导,谢谢