Multiple selections in dropdownlist

  • Thread starter Thread starter Steffen Loringer
  • Start date Start date
S

Steffen Loringer

Hi all,

may be an easy question: How can I allow multiple selections in a
dropdownlist?

Thanks
Steffen
 
may be an easy question: How can I allow multiple selections in a
dropdownlist?

An <asp:DropDownList /> web control is a combination of a dropdown and a
listbox and, as such, allows only one selection to be selected.

What you need is the <asp:ListBox /> web control instead, with its
SelectionMode set to "Multiple". Then, your users make multiple selections
by using the Control and Shift keys in combination with the mouse.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top