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?單選按鈕組需要自定義控件中的選擇限制
這有效地設置了HTML'button'的'name'屬性,這使得所有具有相同名稱的按鈕都作爲一個組來控制。 –
感謝您填寫我的回答:) – misha