RE: temp variable storage?

2002-11-25 Thread Mosh Teitelbaum
http://www.evoch.com/ > -Original Message- > 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 >

RE: temp variable storage?

2002-11-25 Thread Brian Scandale
ECTED]] >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

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 dir

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 S

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 c

Re: temp variable storage?

2002-11-23 Thread Jason Miller
7;t be written to the DB as soon 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

RE: temp variable storage?

2002-11-23 Thread brook
-- >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

RE: temp variable storage?

2002-11-23 Thread Brian Scandale
; -Original Message- >> 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 use

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 v

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){ StructInsert(tmpStruct,"Attributes.#

RE: temp variable storage?

2002-11-23 Thread Russ
rself > >jay > > > >Ken Wilson wrote: > > > >>What dictates that the first form can't be written to the > DB as soon > >>as they submit it? > >> > >>Ken > >> > >> > >> > >>-Original Message- &

Re: temp variable storage?

2002-11-23 Thread Brian Scandale
>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 boxes

Re: temp variable storage?

2002-11-23 Thread Jason Miller
D]] >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 t

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

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 t