Post Data from one form to another form

K

Ken

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
 
K

Kevin Spencer

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.
 
S

Stefan B Rusynko

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
|
|
 
Top