Top "Checkboxlist" questions

The CheckBoxList control provides a multi selection check box group that can be dynamically generated with data binding.

How to get values of selected items in CheckBoxList with foreach in ASP.NET C#?

I have a CheckBoxList like this: <asp:CheckBoxList ID="CBLGold" runat="server" CssClass="cbl"> <asp:ListItem Value="…

c# asp.net list foreach checkboxlist
How to loop through a checkboxlist and to find what's checked and not checked?

I'm trying to loop through items of a checkbox list. If it's checked, I want to set a value. If …

c# .net checkboxlist
How to validate a user chose at least one checkbox in a CheckBoxList?

I've got a CheckBoxList control that I want to require the user to check at least ONE box, it does …

asp.net .net validation checkbox checkboxlist
Get checkbox values in controller mvc 4

I am trying to retrieve the checked checkbox value from a checkbox list without any success , below is the code …

asp.net-mvc asp.net-mvc-4 model controller checkboxlist
ASP.NET, VB: checking which items of a CheckBoxList are selected

I know this is an extremely basic question, but I couldn't find how to do this in VB... I have …

asp.net vb.net selecteditem checkboxlist listitem
How to disable a checkbox in a checkedlistbox?

I have some items in a CheckedListBox, I want to disable the CheckBox of first item in it. i.e. …

c# winforms checkboxlist
Check multiple items in ASP.NET CheckboxList

I try to check multiple values in ASP.NET CheckboxList but I couldn't. I Wrote : chkApplications.SelectedValue = 2; chkApplications.SelectedValue = 6; But …

c# asp.net checkboxlist
How to set multiple selected values in asp.net checkboxlist

I have a asp.net checkbox list bound to a linq to sql datasource and when I check the item …

asp.net .net-3.5 checkboxlist
How to set/get values of checkboxes from a servlet dynamically

This is more of a logic question. I have a checkbox on a webpage and I store its value from …

java servlets checkboxlist
CheckboxList in MVC3 View and get the checked items passed to the controller

I have a class for MoreInfo: public class MoreInfo { public string Name { get; set; } public string selectedCheckboxItems {get; set;} } I …

asp.net-mvc asp.net-mvc-3 checkboxlist