I\'m trying to model bind a set of dynamically generated checkboxes so as to process them in the controller action but can\'t get the model binding to occur. This is the scenari
Something simpler:
@foreach (var pair in Model.CategoryCheckboxes) { @Html.CheckBoxFor(m=>m.CategoryCheckboxes[pair.Key]) }