or you can just use a array of session variables/cookies
Main Topics
Browse All TopicsI am writing a vb.net web application that involves passing over 30 parameters between 2 pages.
I can do this via a number of different ways(eg session variables). THe problem is that all the methods I have found do not seem to be particularly elegant eg settin up 30 session variables.
Does anyone know of an obvious way to pass multiple parameter between 2 web pages in a vb.net application that more graceful.
Thanks in advance
Niall
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: benfellowsPosted on 2003-06-08 at 17:08:00ID: 8678440
Hi Niall, You could try passing an Array with 30 elements between the two pages. The other way would be to store the variables in a temporary database then picking those variables up again in the next page. Hope this helps, I am not too familar with .NET.