我有30個單獨的RadioButton。我無法使用RadioButtonList。有3組按鈕。每個組都有一個唯一的GroupName。一切工作正常在網絡瀏覽器。我怎樣才能知道在每個給定GroupsNames中選擇了哪個按鈕?ASP.Net c#給定GroupName中的哪個單選按鈕被選中?
編輯:功能我用
private string getRadioValue(ControlCollection clts, string groupName)
{
string ret = "";
foreach (Control ctl in clts)
{
if (ctl.Controls.Count != 0)
{
if (ret == "")
ret = getRadioValue(ctl.Controls, groupName);
}
if (ctl.ToString() == "System.Web.UI.WebControls.RadioButton")
{
RadioButton rb = (RadioButton)ctl;
if (rb.GroupName == groupName && rb.Checked == true)
ret = rb.Attributes["Value"];
}
}
return ret;
}
令人失望,謝謝。 – Justin808 2010-12-07 02:10:35