Select-Box and not drop down list in Asp.net MVC2
Is there an alternative to the drop down list like a Select-Box in MV开发者_C百科C2? I have been looking around for a bit and the web seems a little ambiguous on this issue.
You could use the Html.ListBoxFor
which will generate a multiple select list box. The only difference with the DropDownListFor
is that it addes the multiple="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.
精彩评论