Why is it removed: ASP.NET MVC CheckBoxList (without MVCContrib)

后端 未结 4 938
醉梦人生
醉梦人生 2021-02-02 12:48

Why is the CheckBoxList removed from ASP.NET MVC preview release 5?

Currently I don\'t see any way in which I can create a list of checkboxes (with similar nam

4条回答
  •  说谎
    说谎 (楼主)
    2021-02-02 13:10

    A for loop in the view to generate the checkboxes

    <% foreach(Inhoud i in ViewData["InhoudList"] as List) { %>
       <%= i.name %>
    <% } %>   
    

    Don't use Html.Checkbox, as that will generate two values for each item in the list (as it uses a hidden input for false values)

提交回复
热议问题