Hello all,
In ASP.NET MVC Beta I was able to get the form parameters of
<input id="addresses[40].City" name="addresses[40].City" type="text" value="City" />
<input id="addresses[40].Country" name="addresses[40].Country" type="text" value="Country" />
as Edit(List<Address> addresses)
in controller action.
Nonetheless, in the new Release Candidate I cannot retrieve the values(null) as a parameter in action. I can see the values when I make a FormCollection parameter, but it will be a headache to parse all the Key/Value pairs into a object.
Any help would be appreciated.