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
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)
Html.Checkbox