Cannot Get My Html Input Array To Serialize Into A List In Asp.Net Mvc
I am attempting to implement a tagging system into my asp.net MVC project. When a user edits or adds a task, they can add any amount of tags they want before submitting. I am usi
Solution 1:
It sounds like what you've got should work, but try changing the type of Tags property from List to IList. the model binder might not be using the concrete List<> type.
also, check out this article by Phil Haack: http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx
Post a Comment for "Cannot Get My Html Input Array To Serialize Into A List In Asp.Net Mvc"