双击 button 在点击事件里面写上:如果是弹出对话框:this.Page.ClientScript.RegisterStartupScript(this.GetType(), "js", "alert(‘“+RadioButton.SelectText+”')",true); 这个是在页面注册了一段脚本,名字叫“js”,脚本内容是“alert(‘参数’)”这个是弹出对话框的js脚本。
在button的双击事件里,用foreach对每个RadioButton循环
foreach(Control ctrl in this.Controls)
{
if(ctrl is RadioButton)
{
RadioButton rt=ctrl as RadioButton;
if (rt.Checked)
MessageBox.Show(rt.Name);
}
}