I want to use asp:CheckBoxList , but the browser gives an error:
Uncaught SyntaxError: Failed to execute 'matches' on 'Element': 'A ASP: CHECKBOXLIST' is not a valid selector.
<form method="get" action=""> <h3>Критерії вибору:</h3> <p>Тип</p> <asp:CheckBoxList runat="server" ID="CheckboxList1" RepeatColumns="3"> <asp:ListItem Selected="true">Option 1</asp:ListItem> <asp:ListItem>Option 2</asp:ListItem> </asp:CheckBoxList> <p>Ціна</p> <label for="minPrice">Від:</label> <input type="number" name="minPrice" id="minPrice" value="@ViewBag.min"/> <label for="maxPrice">до:</label> <input type="number" name="maxPrice" id="maxPrice" value="@ViewBag.max"/> <input type="submit" value="Пошук"/> </form> Help solve the problem.