开发者

Select-Box and not drop down list in Asp.net MVC2

开发者 https://www.devze.com 2023-03-30 07:30 出处:网络
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.ListB

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消