Validate ASP.NET RadioButtonList using jQuery
ASP.NET RadioButtonList control is used to create a group of radio buttons, where all are rendered as an individual <input type=radio></input>. So in this post, I will show you how to validate ASP.NET RadioButtonList using jQuery. Let's declare a RadioButtonList. <asp:RadioButtonList ID="rdlList" runat="server"> <asp:ListItem Text="jQuery" Value="jQuery"></asp:ListItem> <asp:ListItem Text="JavaScript" Value="JavaScript"></asp:ListItem> <asp:ListItem Text="Prototype" Value="Prototype"></asp:ListItem> <asp:ListItem Text="Dojo" Value="Dojo"></asp:ListItem> […]