Is there any sample code of how to read the id of the selected checkbox in a view from a controller.
<% foreach (var item in Model.projects) { %>
<tr><td><input type="checkbox" name="selectedObjects" value=" <%=item.ID %>">
<%=item.Name %>
<% } %>
What must be the code on the controller to get the ID of the selected checkboxes?