Я хотел бы знать, как получить значение или текст RadioButtonList?
Я использую vb.net
Массив выглядит так: { "apple", "banana", "dog" }
Мой код (Dynamic RadioButtonList):
For Each x In radio
If Not (x = ";") Then
radio2 = radio2 & x
Else
RadioButtonList1.Items.Add(New ListItem(radio2))
radio2 = ""
End If
Next