C# .net 动态构造j个单选框 1按钮 点击按钮返回单选框的ID 返回值不正确,求分析改错,并求复选框如何写

2025-01-05 10:34:11
推荐回答(4个)
回答1:

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

回答2:

设置生成的Radio的EnableViewState值为True
还有 AutoPostBack的值为True

回答3:

变量string chioce 在每次选中RadioButton的时候都会重新初始化,所以你在获取学员选择答案的时候chioce都是new string[7] { "", "", "", "", "", "", ‘,"" }状态的
你如果把 string[] chioce改为静态的或许可行哦

回答4:

string[] chioce = new string[7] { "", "", "", "", "", "", "" }