That someone is going to be me, and I am going to try to get you where you need to be, without doing the work for you.
Important points from the article:
1) Attach an event handler in HTML for the SelectedIndexChanged event
OnSelectedIndexChanged="In
dex_Change
d"
AutoPostBack="true"
runat="server"/>
2) Define the event handler in the code-behind
VB.NET:
Sub Index_Changed(sender As Object, e As EventArgs)
Label1.Text = "You selected " & RadioButtonList1.SelectedI
tem.Text & _
" with a value of : " & RadioButtonList1.SelectedI
tem.Value & "."
End Sub
C#:
void Index_Changed(Object sender, EventArgs e) {
Label1.Text = "You selected " + RadioButtonList1.SelectedI
tem.Text +
" with a value of $" + RadioButtonList1.SelectedI
tem.Value +
".";
}