Is there an alternative to the drop down list like a Select-Box in MVC2? I have been looking around for a bit and the web seems a little ambiguous on this issue.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use the
Html.ListBoxForwhich will generate a multiple select list box. The only difference with theDropDownListForis that it addes themultiple="multiple"to the<select>tag that it generates and obviously the first parameter in the lambda expression must be a list property as you could have multiple selected values.