I am working on ASP.Net MVC 3.0 Razor Engine Application.
I have a Page which holds a button to load a form.
when user clicks the Button this will load a form to the page. If he Clicks the button again one more form will be appended to the same page, this will continue as long as user continues clicking the button.
I want to know if i can cache the whole page while user is in a session. Because, if user enters information in the form1 an he adds one more form (that will be form2). And he happen to accidentally or Intentionally click any link of the page and he wants returns to the current page. I would like this page to still persist the forms and the data in it.
I was looking at many article no where i found any information of MVC Page Caching.
Can any one suggest me. What are the workarounds for this situation.
Thanks