ASP.NET MVC does not use ViewState in the traditional sense (storing control values ββon a web page). Rather, the values ββof the controls are sent to the controller method. After calling the controller method, what you do with these values ββis up to you.
ASP.NET MVC will keep the values ββof the controls long enough for you to check them and (if necessary) to close them back to the page for editing or correction. If the checks are validated, you can save them in a database or other data warehouse, where they will be available for subsequent GET requests.
Robert Harvey Aug 16 '09 at 22:58 2009-08-16 22:58
source share