变量string[] chioce 在每次选中RadioButton的时候都会重新初始化,所以你在获取学员选择答案的时候chioce都是new string[7] { "", "", "", "", "", "", "" }状态的。
你如果把 string[] chioce改为静态的或许可行。
你还是去学一下asp.net 页面的生存周期。
设置生成的Radio的EnableViewState值为True
还有 AutoPostBack的值为True
变量string chioce 在每次选中RadioButton的时候都会重新初始化,所以你在获取学员选择答案的时候chioce都是new string[7] { "", "", "", "", "", "", ‘,"" }状态的
你如果把 string[] chioce改为静态的或许可行哦
string[] chioce = new string[7] { "", "", "", "", "", "", "" }