Re: Persistance of ColdFusion Structures

2006-06-21 Thread Tom Chiverton
On Wednesday 21 June 2006 16:03, Charlie Griefer wrote: > you can wddx it :) Doesn't work for CFCs though, so it's easier to say cookie and client can't store complex types. -- Tom Chiverton This email is sent for and on behalf of Halliwell

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Scott Stewart
have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 10:53 AM To: CF-Talk Subject: Re: Persistance of

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Andy Matthews
But then it's no longer a structure per se...just a string. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 10:04 AM To: CF-Talk Subject: Re: Persistance of ColdFusion Structures you can wddx it :) On 6/21/06, Everett, Al (NIH/

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Andy Matthews
Structures A struct can't exist in a cookie, as they only allow simple values. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 10:54 AM To: CF-Talk Subject: RE: Persistance of ColdFusion Structures A structure will only live on the page

Re: Persistance of ColdFusion Structures

2006-06-21 Thread Charlie Griefer
t token they can also be stored in CLIENT variables as well. > > > -Original Message- > From: Charlie Griefer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 21, 2006 11:04 AM > To: CF-Talk > Subject: Re: Persistance of ColdFusion Structures > > you can wddx

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Everett, Al \(NIH/NIGMS\) [C]
- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 11:04 AM To: CF-Talk Subject: Re: Persistance of ColdFusion Structures you can wddx it :) On 6/21/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]> wrote: > A struct can't exist in a cookie, as

Re: Persistance of ColdFusion Structures

2006-06-21 Thread Charlie Griefer
006 10:54 AM > To: CF-Talk > Subject: RE: Persistance of ColdFusion Structures > > A structure will only live on the page which creates it unless it's set > in one of the following scopes: > > SESSION > APPLICATION > SERVER > COOKIE > > Note that

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Everett, Al \(NIH/NIGMS\) [C]
A struct can't exist in a cookie, as they only allow simple values. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 10:54 AM To: CF-Talk Subject: RE: Persistance of ColdFusion Structures A structure will only live on the page

RE: Persistance of ColdFusion Structures

2006-06-21 Thread Andy Matthews
ssage- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 9:45 AM To: CF-Talk Subject: Persistance of ColdFusion Structures All: Are ColdFusion structures meant to be persistent across pages. I have an app where I need to trap form field data, if a user has entered

Re: Persistance of ColdFusion Structures

2006-06-21 Thread Charlie Griefer
a structure in and of itself is just...a variable. Whether or not it "persists" depends on the scope in which the variable (structure) exists. the form scope (which is a structure) exists on the form's action page, and will not persist beyond that. You could put it into the session scope: Mak

Persistance of ColdFusion Structures

2006-06-21 Thread Scott Stewart
All: Are ColdFusion structures meant to be persistent across pages. I have an app where I need to trap form field data, if a user has entered an ID that already exists, and give them the option of reviewing the existing and then submitting without re-entering. Scott Stewart ColdFusion Deve