Using radiobuttons in groups
-
Hi I created a radiobuttons in groups for my website like here : http://www.doxtop.com/browse/384c0894/email-settings.aspx?private_key=34de2c40 in this link. I used this code for each radio button groups <td> I receive a new message from </td> <td class="tdRadios"> <input id="rblMsg1" type="radio" name="rblMsgs" runat="server" value="everyone"/> </td> <td class="tdRadios"> <input id="rblMsg2" type="radio" name="rblMsgs" runat="server" value="friends" checked/> </td> <td class="tdRadios"> <input id="rblMsg3" type="radio" name="rblMsgs" runat="server" value="none"/> </td> After clicking save button I want to get the selected values from all radio button groups. I found that I have loop through all radio buttons in the groups separately and get the values. Is there any other good solution for this. Or is it possible to do the same design with asp:RadioButtonList if anyone know it could you please tell me. Thanks.