I catch post request from 3rd-side static page (generated by Adobe Muse) and handle it with MVC action.
I ran into this today, and though in hindsight it seems obvious, just thought I'd add that you need to make sure your access modifiers for the Properties on the model you're binding are correct. I had public MyProperty { get; internal set; }
on some and they would not bind. Removed internal
and they worked just fine.