我正在使用asp.net mvc-2,想知道是否有办法在其中创建一个带有复选框列表的列表框?
答案 0 :(得分:1)
我建议使用类似于列表框的div,然后你就可以拥有你想要的任何内容。
<div style="overflow:auto;border:1px solid #336699;padding-left:5px">
$$$WHATEVER YOU WANT$$$
<%= Html.ListBox(“WhateverYouWant”, Model.WhateverList) %>
</div>
绑定类似
的内容var testList = new List<SelectListItem>();
//add SeleectListItems to testList
ViewData["WhateverYouWant"] = testList;