我试过
Dim theme = rblTheme.Items(rblTheme.SelectedIndex).Value
选择第一个值
Dim theme = rblTheme.SelectedItem.Value
选择第一个值
Dim theme = ""
For i As Integer = 0 To rblTheme.Items.Count - 1
If (rblTheme.Items(i).Selected) Then
theme = rblTheme.Items(i).Value
End If
Next
选择两个值。
需要帮忙 !!