我有Radio Buttons列表,里面有4个项目和一个按钮对象,我在后面的代码中使用vb.net中的代码
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Session("k1") = RadioButtonList1.SelectedIndex.ToString()
Label1.Text = Session("k1").ToString()
End Sub
我想在点击按钮时获取所选项目的选择索引的值,但它总是给我零? 任何人都可以帮助谢谢。