I send my viewmodel from my get action method to a view for update, the view has a submit button which takes returns control to the post action method. The viewmodel is of this form
public class MyViewModel
{
public someObject a;
public someOtherObject b;
}
Now, in the get method someOtherObject b
has data in it, in the view it has data in it, but in the post method it is null. Why might this be?
Thanks,