If you are getting your Model from a form and you want to manipulate the data that came from the client form and write it back to a view, you need to call ModelState.Clear() to clean the ModelState values.
The reason is that normally, you want to postback to the client the form with all the errors. So, when you put back the parameter that contain your...