What is the best way to bind a dynamically created set of elements in an MVC view to a collection in MVC 4. I know that previous versions required the elements to look like this:
<input name="Categories[0].CategoryID" type="hidden" value="123" /> <input name="Categories[0].CategoryName" type="hidden" value="Music" /> <input name="Categories[1].CategoryID" type="hidden" value="456" /> <input name="Categories[1].CategoryName" type="hidden" value="Movies" />
But when you dynamically add new elements and delete them, everything quickly fails.
Does MVC 4 add a way to bind to an unclassified collection?
Dismissile
source share