你好,你的“asp.net repeater中有radiobutton 怎么获取选中的值?”这个问题怎么解决的

2024-11-20 18:23:22
推荐回答(1个)
回答1:

参考:
可以用RadioButtonList。如果用RadioButton的话,设置2个单选按钮的GroupName属性为相同值
用RadioButton rb=Repeater1.Items[0].FindControl("RadioButton1") as RadioButton;获取第一项的RadioButton1
用rb.Checked判断是否选中