I have 5 views in my ASP.NET MVC application. Some data were captured from these views and I am navigating through these views using 2 buttons: the Previous and Next buttons.
So I fill the data in View 1 and I go to view 2 and enter the data there and so on.. till View 5.
Now the question is: If I come back again to previous views, how to retain the data entered there in that particular view.
In addition, I want to submit the data from all the 5 views at a time, once I finish entering data to all 5 views.
What is the best way to do it?