I have a RadioButtonList on my page that is populated via Data Binding
<asp:RadioButtonList ID="rb" runat="server">
</asp:RadioButtonList>
<asp:Button Text="Submit" OnClick="submit" runat="server" />
How do I get the value of the radio button that the user selected in my "submit" method?
See Question&Answers more detail:os