Reputation: 1
Hi friends I am using asp.net,C# I have got a requirement like creating checkbox as item in a dropdownlist. where the items display text i.e checkbox text is generated from database. So any clues in creating a dropdownlist which contains checkbox.
Upvotes: 0
Views: 1386
Reputation: 2096
The asp.net DropDownList control does not support this functionality.
Have you looked at the CheckBoxList control?
Upvotes: 2
Reputation: 4966
Explore the Properties...of the control. There would be a property called ShowChecked or similar. The control in consideration might be CheckedListBox
Upvotes: -1