Print Page | Close Window

Classical ASP scripts + multipage forms

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=5750
Printed Date: 01 April 2026 at 1:00am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Classical ASP scripts + multipage forms
Posted By: Rush
Subject: Classical ASP scripts + multipage forms
Date Posted: 14 September 2003 at 8:23pm

hi Guys,

Does anyone know where can i get a good free ASP scripts for multi page forms that store information into access dbase?

I have tried Hotscripts, 101 ASp but still cant seems to find one that it easy to implement.

Thanks for your help!




Replies:
Posted By: faubo
Date Posted: 14 September 2003 at 9:37pm

why dont you create your own?

You just need to pass the info from the page 1 to page 2 and pass it with hidden fields to page 3 where you will pass the info from page 1, 2 in hidden fields and 3 in the normal forms and so on...



-------------
http://www.conhecerparaconservar.org - I don't know how to make you click here


Posted By: Rush
Date Posted: 14 September 2003 at 9:53pm
Originally posted by faubo faubo wrote:

why dont you create your own?

You just need to pass the info from the page 1 to page 2 and pass it with hidden fields to page 3 where you will pass the info from page 1, 2 in hidden fields and 3 in the normal forms and so on...

Thanks for the reply Faubo. Sorry i didnt mentioned that i am not an expert yet. but have good understanding in ASp , know to 2 manupulate and implement the scripts  but dont know much to start from the scratch. Just wondering if anyone knows where can i download such scripts? Tried ASp101 but cant seems to find one



Posted By: mapnapkin
Date Posted: 14 September 2003 at 10:07pm

try this

fisrt page form
-------------------------
<form action="page2.asp" method="post" name="first">
<input name="feild1page1" type="text">
<input name="feild2page1" type="text">
<input name="feild3page1" type="text">
<input name="submit" type="button" value="submit">
</form>
------------------------
second page form
------------------------
<form action="page3.asp" method="post" name="second">
<input name="feild1page1" type="hidden" value="<%Request.Form("feild1page1")%>">
<input name="feild2page1" type="hidden" value="<%Request.Form("feild2page1")%>">
<input name="feild3page1" type="hidden" value="<%Request.Form("feild3page1")%>">
<input name="feild1page2" type="text">
<input name="feild2page2" type="text">
<input name="feild3page2" type="text">
<input name="submit" type="button" value="submit">
</form>
----------------------------------
third pages form
---------------------------------
<form action="finish.asp" method="post" name="third">
<input name="feild1page1" type="hidden" value="<%Request.Form("feild1page1")%>">
<input name="feild2page1" type="hidden" value="<%Request.Form("feild2page1")%>">
<input name="feild3page1" type="hidden" value="<%Request.Form("feild3page1")%>">
<input name="feild1page2" type="hidden" value="<%Request.Form("feild1page2")%>">
<input name="feild2page2" type="hidden" value="<%Request.Form("feild2page2")%>">
<input name="feild3page2" type="hidden" value="<%Request.Form("feild3page2")%>">
<input name="feild1page3" type="text">
<input name="feild2page3" type="text">
<input name="feild3page3" type="text">
<input name="submit" type="button" value="submit">
</form>



Posted By: Rush
Date Posted: 14 September 2003 at 10:24pm
Thanks


Posted By: 3BEPb
Date Posted: 17 September 2003 at 12:27am

Or store all data in the session cookies, it will be even easier, like:

Session("FirstName")=Request("Name")

and then insert session values into the Db at the final page.



Posted By: Rush
Date Posted: 17 September 2003 at 6:58am
Thanks again - I got it working now


Posted By: sgbk101
Date Posted: 04 December 2003 at 10:13pm

I had Problems with the code below...

<input name="feild1page1" type="hidden" value="<%Request.Form("feild1page1")%>">

This one worked though................

<input name="feild1page1" type="hidden" value="<%=Request.Form("feild1page1")%>">



Posted By: pmormr
Date Posted: 05 December 2003 at 1:47pm
y did u bother posting that?

-------------
Paul A Morgan

http://www.pmorganphoto.com/" rel="nofollow - http://www.pmorganphoto.com/



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net