单选按钮组在自定义控件中需要选择限制

时间:2011-12-02 18:44:57

标签: c# asp.net custom-controls

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?

1 个答案:

答案 0 :(得分:2)

试试这个:

aRadioButton.GroupName = "myGroup";

每个RadioButton必须在一个组中,以便它知道何时从同一组中取消选择其他人。