Asp.net MVC putting checkbox data in a list of booleans
问题 I am trying to bind unknown amount of checkboxes to a list of booleans. After hours of searching I havn't found any solution. This is the relevent part of code in my view: @foreach (Device d in Data.GetDevices()) { <label asp-for="NewRegistration.Devices">@d.Name</label> <input asp-for="NewRegistration.Devices" class="checkbox" type="checkbox" /> } The loop works but when i changed the type if the input to checkbox it gave me this exeption: InvalidOperationException: Unexpected 'asp-for'