Displaying the selections of a drop down list on the next page

  • Thread starter Thread starter rich2912
  • Start date Start date
R

rich2912

I have a page, with three drop down boxes. Each has four choices
linked to a database.

Here is what I would like to do:

I would like the results of the three choices, to be displayed on the
next page, after the submit button is clicked.

I have searched here, but am unfamiliar with the terminolgy for this
kind of feature. Any help, or example code would be great.

Thanks
 
Are you talking about ASP.NET? If so then the selected values become part of
the Form values in the post, if you are posting to a different page. If you
are redirecting, use Transfer... it ships all of the page values to the next
page.

======================================
David McCarter [Microsoft VB.NET MVP]
www.vsdntips.com
VSDN Tips & Tricks .NET Coding Standards available at:
www.cafepress.com/vsdntips.20412485
 
Back
Top