Answers for "form html validate radio checked"

14

html radio button checked

<input type="radio" id="huey" name="drone" value="huey"
         checked> 
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio-->
Posted by: Guest on May-17-2020
0

webforms validate radio buttons

<asp:RadioButtonList ID="RadioButtonList1" runat="server">
            <asp:ListItem>north</asp:ListItem>
            <asp:ListItem>west</asp:ListItem>
        </asp:RadioButtonList>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
            ControlToValidate="RadioButtonList1" ErrorMessage="RequiredFieldValidator">
        </asp:RequiredFieldValidator>
Posted by: Guest on January-21-2020

Browse Popular Code Answers by Language