每个radiobutton取个名字,或者建立一个radiobutton()的数组,把所有处于选中的radiobutton的值相加
groupbox只是一个分组的容器同一groupbox内的radioButton只能有一个Checked 属性为True
radioButton1-5 radioButton是5个radioButton控件
Public Partial Class MainForm
Dim arrRB As RadioButton()
Public Sub New()
' The MeInitializeComponent call is required for Windows Forms designer support
MeInitializeComponent()
'
' TODO : Add constructor code after InitializeComponents
'
arrRB={radioButton1,radioButton2,radioButton3,radioButton4,radioButton5}
End Sub
Sub MainFormClick(sender As Object, e As EventArgs)
Dim sum As Integer
sum=0
For Each item As RadioButton In arrRB
If itemChecked Then'判断RadioButton是否被选择
sum+=ConvertToInt32( itemText)'字符串转换为Integer,并累加
End If
Next
MessageBoxShow(sumToString())'输出最后结果
End Sub
Sub MainFormLoad(sender As Object, e As EventArgs)
End Sub
End Class
2个 radio 的name设置一样, 直接 取 request("name的名称") 就好了
回答补充:
对的啊,
<input name="sex" type="radio" checked="checked" value="男" />男<input name="sex" type="radio" value="女" />女
asp里直接request("sex") 就好了 不用取2个的, radio选择的是那个 asp里就 去那个radio的value
以上就是关于vb.net中读取多个groupbox中的radiobutton的值全部的内容,包括:vb.net中读取多个groupbox中的radiobutton的值、请问asp怎么获取radiobutton的值、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)