日本語
问:すべての RedioButton を取得し、現在選択されている RedioButton の値を取り出す方法
答: foreach (Page.Form.Controls の var c) { if (c はラジオボタン) { RadioButton btn = c として RadioButton; if (ボタンがチェックされている) { Response.Write(btn.Text); } } }
-