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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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