Tagged Questions

13
votes
4answers
3k views

What is correct behaviour of UpdateModel in ASP.NET MVC?

I am interested to know what you guys feel should be deemed "correct behaviour" in terms of the UpdateModel method in ASP.NET MVC. The reason I ask here is perhaps if this functionality is "by ...
1
vote
0answers
494 views

UpdateModel for arrays in FormCollection

If I have [0].propertyname, [1].propertyname, etc in my FormCollection how would I go about updating the model? if I do this: public ActionResult Edit(int id, FormCollection collection){ ...