Can anyone explain me how view state is handled in ASP.NET MVC 3. I know that in MVC view state is not there.
But just wanted to know how exactly is the data handled from one page to another page.
For eg.: I have two view in my classes "Create" -> creates a new person and "Index" -> displays the list of person in "Person" modal.
So when I create a new peson using HttPost and then in this post method i go to index view.
So here how the data is been handled as View state is not there.
Please help me out.
Thansk in advance!!!!