muliple page forms

R

Rick Roy

Greetings friends,
I want to create a multiple page form, saving all of the
data input to one database. Is this possible with
FrontPage and if so, how?
 
K

Kevin Spencer

Yes, but you would have to use ASP or some other server-side ISAPI to do it.
Basically, you need to either pass the form data to the next part in hidden
form fields (which would be built dynamically on the server-side), or cache
the data somewhere on the server (Session or Database most likely) between
forms. Requires some programming.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
The more I learn, the less I know.
 
Top