2011-12-02 48 views
1
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?單選按鈕組需要自定義控件中的選擇限制

回答

2

試試這個:

aRadioButton.GroupName = "myGroup"; 

每個RadioButton必須是一個組中,以便它知道何時從同一組取消了別人。

+1

這有效地設置了HTML'button'的'name'屬性,這使得所有具有相同名稱的按鈕都作爲一個組來控制。 –

+0

感謝您填寫我的回答:) – misha