Category: MVC
view more software Tips and Tricks
Updated: 03/25/2016 14:03 PM
Author: Shiju Mathews Status: Resolved. |
When the form is posting to the controller method for Create or Update, this method is supposed to save the data to the database and then return as some updated values for the view. But if we are sending the updated model back to the view, the view will continue to show the old data. Even though you are updating the model (car) with new data from database the view remains the same. This can be solved by explicitly calling the Clear() method of the ModelState as follows. |