问题描述
我将RadioButtonList设置为rbQ1,rbQ2,rbQ3,直到rbQ13。
现在,我想遍历此单选按钮以获取这些单选按钮的选定值。
我尝试过
Dim myControl1 As Control = FindControl("rbQ1")
Response.Write("<script type=""text/javascript"">alert(" & myControl1.selecteditem.value & ");</script")
解决方法
您需要将其强制转换为RadioButton
。 Control
是一个通用对象,代表所有控件类型的基本属性-显然并非所有控件都具有选定项。