1

I have a page(view) and on submit i transfer control to another page(view) and i want some values which was filled in first view to transfer to next. How we can achieve that in ASP.NET MVC?

user813598
  • 15
  • 3

1 Answers1

0

You can all conventional data transfer method which are available in ASP.net

Client Side: 1. Cookie 2. Querystring

Server side: 1. Sessions

For more information on these see http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx

Thanks, Ashwani

Ashwani K
  • 7,880
  • 19
  • 63
  • 102