Skip to content

Instantly share code, notes, and snippets.

@toledorobia
Last active January 5, 2018 15:33
Show Gist options
  • Save toledorobia/b6182e50a63101e10560f9c65c43a7bc to your computer and use it in GitHub Desktop.
Save toledorobia/b6182e50a63101e10560f9c65c43a7bc to your computer and use it in GitHub Desktop.
ASP.NET MVC - Form input array
<input type="text" name="ItemIds" value="1" />
<input type="text" name="ItemIds" value="2" />
<input type="text" name="ItemIds" value="3" />
public class InputArrayModel
{
public int? Id { get; set; }
public ICollection<int?> ItemIds { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment