In my web application I have a page with a list of "Requests" that an administrator can either Approve or Deny in bulk. So the page would look something like:\[code\][x] Request 1[ ] Request 2[x] Request 3[ ] Request 4[Approve Selected] [Deny Selected]\[/code\]My model looks something like:\[code\]public class RequestManagementModel{ public List<string> LicenseIdsToProcess { get; set; } public List<Resource> Resources { get; set; } // additional fields}\[/code\]And in my view, I have:\[code\]int counter = 0;@foreach (Resource r in Model.Resources){ <tr> <td> @Html.CheckBoxFor(model => model.LicenseIdsToProcess[counter++], new { value = http://stackoverflow.com/questions/12788337/r.RequestId }) </td> </tr>}\[/code\]And of course my controller action accepts the model on form post\[code\]public ActionResult ProcessRequests(RequestManagementModel model, ProcessType type){ // process requests here}\[/code\]So, as you might expect, I'm getting an error in the view on \[code\]model.LicenseIdsToProcess[counter++]\[/code\] that says "Cannot implicitly convert type 'string' to 'bool'". It doesn't like the fact that I'm trying to use checkboxes to represent a list of values that a user can select one or many from, rather than a single true/false.I'd like this to be set up so that, for every checkbox the user selects, that string id value is bound to the list of id's in my model when the form is posted. I know how to do it just by using \[code\]<input type="checkbox">\[/code\], because I can set the value of the checkbox there. But is there a way to use it with Html.CheckBoxFor to achieve strong typing through model binding?Thanks.