View State
Can we manage data between more than one Page by View State using Page Preview Property?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeev KumarPosted Feb 27, 2023, 6:13 AM
The View State does not track fields and values across pages. Its information does not transfer from one page to another
Sukesh MarlaPosted Oct 8, 2012, 4:23 PM
do a cross page post - from your first page, post back to the second page (and get the details from HttpContext.Current.Request.Form[] collection)
OR check this link if you have only ViewState as Option
http://ramanisandeep.net/2010/01/09/access-viewstate-across-pages-in-asp-net/
Check this is correct answer if it helped.