Doing Forms in Series

2003-07-29 Thread Jim McAtee
What's a good way to handle the following application? FormA posts to itself so that submission errors can be displayed and so that it can be repopulated with the original data with the errors displayed. If there are no errors, proceed to FormB and pass along all data from FormA. Can't do a GET

Re: Doing Forms in Series

2003-07-29 Thread Scott Weikert
I don't really want to stash the data in a temporary table, since this web site currently isn't data-driven and has no data source available. Also, I don't want to user session variables. When the second form is being built, just create hidden form variables holding the values from the first

Re: Doing Forms in Series

2003-07-29 Thread Thomas Chiverton
On Tuesday 29 Jul 2003 17:59 pm, Jim McAtee wrote: If there are no errors, proceed to FormB and pass along all data from FormA. Can't do a GET with URL parameters because there's too much data to pass along in the URL. Need to do a POST of some kind. CFInclude form B at the end of sucesful

Re: Doing Forms in Series

2003-07-29 Thread Jim McAtee
I don't really want to stash the data in a temporary table, since this web site currently isn't data-driven and has no data source available. Also, I don't want to user session variables. When the second form is being built, just create hidden form variables holding the values from the

Re: Doing Forms in Series

2003-07-29 Thread Candace Cottrell
You could try embedding the fields. I use Ben Forta's custom tag cf_embedfields. You can find it here: http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=101 Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404

RE: Doing Forms in Series - Custom Tag

2003-07-29 Thread Justin Hansen
:[EMAIL PROTECTED] Sent: Tuesday, July 29, 2003 12:15 PM To: CF-Talk Subject: Re: Doing Forms in Series I don't really want to stash the data in a temporary table, since this web site currently isn't data-driven and has no data source available. Also, I don't want to user session variables

RE: Doing Forms in Series

2003-07-29 Thread Bryan Love
-Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 29, 2003 10:15 AM To: CF-Talk Subject: Re: Doing Forms in Series I don't really want to stash the data in a temporary table, since this web site currently isn't data-driven and has no data