Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Classical ASP scripts + multipage forms
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Classical ASP scripts + multipage forms

 Post Reply Post Reply Page  12>
Author
Rush View Drop Down
Newbie
Newbie
Avatar

Joined: 29 April 2002
Location: Australia
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Rush Quote  Post ReplyReply Direct Link To This Post Topic: Classical ASP scripts + multipage forms
    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!

Back to Top
faubo View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 May 2002
Location: Brazil
Status: Offline
Points: 560
Post Options Post Options   Thanks (0) Thanks(0)   Quote faubo Quote  Post ReplyReply Direct Link To This Post 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...

Back to Top
Rush View Drop Down
Newbie
Newbie
Avatar

Joined: 29 April 2002
Location: Australia
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Rush Quote  Post ReplyReply Direct Link To This Post 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

Back to Top
mapnapkin View Drop Down
Newbie
Newbie


Joined: 28 January 2003
Location: United States
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote mapnapkin Quote  Post ReplyReply Direct Link To This Post 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>

Back to Top
Rush View Drop Down
Newbie
Newbie
Avatar

Joined: 29 April 2002
Location: Australia
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Rush Quote  Post ReplyReply Direct Link To This Post Posted: 14 September 2003 at 10:24pm
Thanks
Back to Top
3BEPb View Drop Down
Groupie
Groupie


Joined: 07 August 2003
Location: United States
Status: Offline
Points: 81
Post Options Post Options   Thanks (0) Thanks(0)   Quote 3BEPb Quote  Post ReplyReply Direct Link To This Post 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.

Back to Top
Rush View Drop Down
Newbie
Newbie
Avatar

Joined: 29 April 2002
Location: Australia
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote Rush Quote  Post ReplyReply Direct Link To This Post Posted: 17 September 2003 at 6:58am
Thanks again - I got it working now
Back to Top
sgbk101 View Drop Down
Newbie
Newbie
Avatar

Joined: 04 December 2003
Location: Barbados
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote sgbk101 Quote  Post ReplyReply Direct Link To This Post 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")%>">

Back to Top
 Post Reply Post Reply Page  12>

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.