Click here to Skip to main content
15,917,473 members

Comments by code_shines (Top 2 by date)

code_shines 7-Jan-14 9:03am View    
i haven't tried anything significant yet. validation is on atleast 1 radio button being checked for evry list. since each button has a value, that are to be added after submitting the form.

here's some code
<pre lang="xml">asp:RadioButtonList ID="r1" runat="server">
<asp:ListItem ID="a1" Value="1" runat="server" Text="option 1" />
<asp:ListItem ID="b1" Value="2" runat="server" Text="option 2" />
<asp:ListItem ID="c1" Value="3" runat="server" Text="option 3" />
</asp:RadioButtonList>

asp:RadioButtonList ID="r1" runat="server">
<asp:ListItem ID="a1" Value="1" runat="server" Text="option 1" />
<asp:ListItem ID="b1" Value="2" runat="server" Text="option 2" />
<asp:ListItem ID="c1" Value="3" runat="server" Text="option 3" />
</asp:RadioButtonList>

</pre>
.. upto 8 more of such lists

PS: i'm new C# ;)
code_shines 21-Nov-13 4:38am View    
thanks a ton. I got the idea now.