I am looking for a Mulitple select dropdown list in asp.net where on select of one item other control also gets populated. I do not want to use 3rd party tool, suggest a control using Jquery or any thing else.
Asked
Active
Viewed 4,503 times
1 Answers
4
Use List box for multiple selection:
<asp:ListBox ID="ListBox1" runat="server" SelectionMode="Multiple" Rows="1"></asp:ListBox>

Nirmal
- 924
- 4
- 9
-
I am looking for drop down list not List box . – rajat gogia Oct 14 '13 at 07:26
-
Use update one . I added "Rows=1" – Nirmal Oct 14 '13 at 07:38