Forum Moderators: open
All of the inputted data is stored in the ViewState for those form elements and can be accessed even if the panels are hidden. So, in other words, there really is no need to pass form element data to another page.
If you really need to though you can always pass the data still using querystring, and hidden form fields, the Session objec, and the Cache object.
By default though, ASP.Net pages are made to use PostBacks (pages that post to themselves).