public HtmlGenericControl fieldset = new HtmlGenericControl("fieldset");
public HtmlGenericControl legend = new HtmlGenericControl("legend");
String[] options = ListString.Split(',');
for (int i = 0; i < options.Length; i++)
{
RadioButton aRadioButton = new RadioButton();
aRadioButton.Text = options[i];
fieldset.Controls.Add(aRadioButton);
}
fieldset.Controls.add(legend)
然而,当收音机列表出现在我的页面上时,可以选择多个单选按钮。如何将选择限制限制为1?
答案 0 :(得分:2)
试试这个:
aRadioButton.GroupName = "myGroup";
每个RadioButton
必须在一个组中,以便它知道何时从同一组中取消选择其他人。