Hinweis:
Die neue Version von RedioButton ist die neueste Version von RedioButton
答:
foreach (var c in Page.Form.Controls)
{
if (c ist RadioButton)
{
RadioButton btn = c as RadioButton;
if (btn.Checked)
{
Response.Write(btn.Text);
}
}
}
-