RE: temp variable storage?

2002-11-25 Thread Brian Scandale
To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about storing the form data temporarily until I can

RE: temp variable storage?

2002-11-25 Thread Mosh Teitelbaum
- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 1:27 PM To: CF-Talk Subject: RE: temp variable storage? I would if I could but I can't. How the data is written depends upon the choices they make across the next 6 forms. Contact me off list if you want

Re: temp variable storage?

2002-11-24 Thread Sean A Corfield
On Sunday, Nov 24, 2002, at 02:26 US/Pacific, Jason Miller wrote: ...entire form's data. It's also a nicer user experience. ... So Sean - are you saying my complex layers solutions isn't a nice user experience? ;) Well, I haven't seen your specific solution running so I can't comment

temp variable storage?

2002-11-23 Thread Brian Scandale
I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about storing the form data temporarily until I can write it to disk? I suspect there are more

RE: temp variable storage?

2002-11-23 Thread Ken Wilson
What dictates that the first form can't be written to the DB as soon as they submit it? Ken -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 1:02 PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text

Re: temp variable storage?

2002-11-23 Thread Jason Miller
PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about storing the form data temporarily until I can

Re: temp variable storage?

2002-11-23 Thread Brian Scandale
PROTECTED]] Sent: Saturday, November 23, 2002 1:02 PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about

RE: temp variable storage?

2002-11-23 Thread Russ
Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 1:02 PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms

Re: temp variable storage?

2002-11-23 Thread Brian Scandale
I think I know what I want to do now... 1. - Store the Form.Variables into a Structure. -cfscript tmpStruct = StructNew(); SomeArrayformNames = ListToArray(form.fieldnames); for(i=1; i LT ListLen(form.fieldnames)+1; i=i+1){

RE: temp variable storage?

2002-11-23 Thread Kwang Suh
Just use wddx to serialize the form scope to a variable. Then, use a hidden field to store the value of the wddx packet. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 11:58 AM To: CF-Talk Subject: Re: temp variable storage

RE: temp variable storage?

2002-11-23 Thread Brian Scandale
- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 11:58 AM To: CF-Talk Subject: Re: temp variable storage? No, no and no. MUST STORE form.variable data while user navigates 6 other forms... Then the form.variable data has value and can be written

RE: temp variable storage?

2002-11-23 Thread brook
: Saturday, November 23, 2002 1:02 PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about storing the form

Re: temp variable storage?

2002-11-23 Thread Jason Miller
as they submit it? Ken -Original Message- From: Brian Scandale [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Saturday, November 23, 2002 1:02 PM To: CF-Talk Subject: temp variable storage? I have a large form (around 100 text boxes and check boxes etc...). Once the user

Re: temp variable storage?

2002-11-23 Thread Sean A Corfield
On Saturday, Nov 23, 2002, at 23:49 US/Pacific, Jason Miller wrote: There has been lots of suggestions on here - but one more - I just built a complex set of forms - there are 8 major forms - half of them dynamically created form queries. And another option I've not seen mentioned is to

Re: temp variable storage?

2002-11-23 Thread Jason Miller
I would have suggested that on the Flash lists I belong to - but occassionally forget about it here - even though I ironically am working on a multi tiered flash form right now. Flash would be a great solution - although it does have the extra step - so if budget is tight it may push it. But as