ASP.NET 单选按钮
foreach(Control x in this.Controls)
{
if(x is HtmlForm)
{
foreach(Control r in x.Controls)
{
if(r is RadioButton)
{
if(((RadioButton)r).Checked)
{
strRadio+=((RadioButton)r).Text+",";
}
}
}
}
}