I\'m using the Ajax.BeginForm helper in ASP.NET MVC3 to submit a form that replaces itself with new values in the form set on the server. However when I use helpers like Htm
in your POST method you need to do
ModelState.Clear();
to reflect the changes made after the post