I have a list of items and I would like to delete items that are checked in a list of checkboxes.
I can\'t use something like CheckboxList since I\'m us
CheckboxList
If you want generated html like
Some label for 3 Some label for 4
Then you can use the following code
@Html.CheckBox("selectedItems", new { @value = @item.checkId })
It won't pass selectedItems to controller.