Asp.net checkboxlist control
we will learn about asp.net checkboxlist control. Just like DropDownList 1. CheckBoxList is collection of ListItem objects. 2. Items can be added to the CheckBoxList in the HTML source or in the code behind file 3. CheckBoxList can be bound to a database table or an xml file DropDownList is generally used , when you want to present the user with multiple choices, from which you want him to select only one option. Where as if you want the user to select more than one option, then a CheckBoxList control can be used. Create an asp.net web application. Copy and paste the following HTML <asp:CheckBoxList ID="checkboxListEducation" runat="server" RepeatDirection="Horizontal"> <asp:ListItem Text="Diploma" Value="1"></asp:ListItem> <asp:ListItem Text="Graduate" Value="2"></asp:ListItem> <asp:ListItem Text="Post Graduate" Value="3"></asp:...