Post Data from one form to another form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to design a form that will post to another form which will in turn post to a database...as an example...

On Form #1, the user selects a color (white, green, red, etc) which is also associated with a color code (white=1, green=2, red=3 etc.

User gets the first form and selects their color. This color then posts to a second form with both the color and the color code in separate fields so that this form is posted to the database with color in one field and color code in another

Any suggestions?

KB
 
Custom ASP or other Server-side application.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Ken said:
I am trying to design a form that will post to another form which will in
turn post to a database...as an example....
On Form #1, the user selects a color (white, green, red, etc) which is
also associated with a color code (white=1, green=2, red=3 etc.)
User gets the first form and selects their color. This color then posts
to a second form with both the color and the color code in separate fields
so that this form is posted to the database with color in one field and
color code in another.
 
To pass parameters from page 1 to page 2 you can just use a simple form and JavaScript
See
http://developer.netscape.com/viewsource/goodman_url_pass/goodman_url_pass.html
or http://www.developer.irt.org/script/form.htm#10.3
and then the second form (w/ the 2 fields in it) just posts to the database (using ASP or the Database wizard)
--




| Custom ASP or other Server-side application.
|
| --
| HTH,
| Kevin Spencer
| .Net Developer
| Microsoft MVP
| Big things are made up
| of lots of little things.
|
| | > I am trying to design a form that will post to another form which will in
| turn post to a database...as an example....
| >
| > On Form #1, the user selects a color (white, green, red, etc) which is
| also associated with a color code (white=1, green=2, red=3 etc.)
| >
| > User gets the first form and selects their color. This color then posts
| to a second form with both the color and the color code in separate fields
| so that this form is posted to the database with color in one field and
| color code in another.
| >
| > Any suggestions??
| >
| > KB
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top