程序代码如下,在执行完成 rbutton.Enabled =true; 后界面上的RadioButton控件没有改变。请问大虾问题在那里?        private void RadioButton1_CheckedChanged(object sender, System.EventArgs e)
{
RadioButton  rbutton=new RadioButton();
for(int i=0;i<9;i++)
{
string buttonid="RadioButton"+(i);
rbutton=(RadioButton)this.FindControl(buttonid); 
rbutton.Enabled =true; 
}
}