ram
ram

Reputation: 1

CheckBox in DropDownlist Control

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

Answers (2)

Charlie
Charlie

Reputation: 2096

The asp.net DropDownList control does not support this functionality.

Have you looked at the CheckBoxList control?

Upvotes: 2

Shankar R10N
Shankar R10N

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

Related Questions