I have a controller method CreateOrUpdate, this method is supposed to save the car to the database and then return as normal.
public ActionResult CreateOrUp
I didn't want to clear the ModelState because I needed to display errors, so I went with
ValueProviderResult vpr = new ValueProviderResult("", null, System.Globalization.CultureInfo.CurrentCulture); ModelState["id"].Value = vpr;