Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<asp:RadioButtonList id="rbl1" runat="server" AutoPostBack="True" [b]OnSelectedIndexChanged="test"[/b]>
Public Sub test(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim rbl As RadioButtonList = sender
'Get the value clicked.... I just wrote it out to the scree as an example
Response.Write(rbl.SelectedItem.Text)
End Sub