Re: passing many variables between pages

2004-12-10 Thread Larry Lyons
>I have a typical form where there are 10 - 15 form variables that must >be passed through multiple templates... > >I have always used the hidden input method > > >Is there a way to take all those hidden input lines and put them into >one variable and just pass that one variable from template to t

Re: passing many variables between pages

2004-12-10 Thread Aaron Rouse
Most processes I have seen with similar needs do pretty much the exact method. It actually is an array of structures, if memory serves me right since I do not have access to that code presently. There are always many ways to skin a cat, go with whatever way you feel meets your spec the best and t

Re: passing many variables between pages

2004-12-10 Thread Aaron Rouse
One of our systems just creates a structure, with keys being the hidden field names and then they have their values. That is assigned to a session variable and then referenced by the pages you are navigating through. On Fri, 10 Dec 2004 16:23:52 +, Keith Gaughan <[EMAIL PROTECTED]> wrote: >

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Aaron Rouse wrote: > One of our systems just creates a structure, with keys being the > hidden field names and then they have their values. That is assigned > to a session variable and then referenced by the pages you are > navigating through. That's assuming a lot, don't you think? Not to menti

RE: passing many variables between pages

2004-12-10 Thread Tim Laureska
Thanks Deith... I'll take a look I guess I could just do a cfinclude also? -Original Message- From: Keith Gaughan [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 10:28 AM To: CF-Talk Subject: Re: passing many variables between pages Tim Laureska wrote: > I have a

Re: passing many variables between pages

2004-12-10 Thread Joe Rinehart
Backing the form with a session-scoped CFC could encapsulate it all nicely, too. -joe On Fri, 10 Dec 2004 14:45:57 -0200, Marco Antonio C. Santos <[EMAIL PROTECTED]> wrote: > Using SESSION structure could be the best answer for Tim questions... > > Best regards > > Marco > > On Fri, 10 Dec 20

Re: passing many variables between pages

2004-12-10 Thread Marco Antonio C. Santos
Using SESSION structure could be the best answer for Tim questions... Best regards Marco On Fri, 10 Dec 2004 10:41:17 -0600, Aaron Rouse <[EMAIL PROTECTED]> wrote: > One of our systems just creates a structure, with keys being the > hidden field names and then they have their values. That is a

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Mark Drew wrote: > Serialise it into wddx, encode it to base 64, put it in hidden var > > > > But then you have the awkward problem of deserialising it later on each page. -- Keith Gaughan, Developer Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland http://digital-crew.com/

Re: passing many variables between pages

2004-12-10 Thread Mark Drew
Serialise it into wddx, encode it to base 64, put it in hidden var On Fri, 10 Dec 2004 10:29:05 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > I have a typical form where there are 10 - 15 form variables that must > be passed through multiple templates... > > I have always used the hidden

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Tim Laureska wrote: > I have a typical form where there are 10 - 15 form variables that must > be passed through multiple templates... > > I have always used the hidden input method > > > Is there a way to take all those hidden input lines and put them into > one variable and just pass that on

passing many variables between pages

2004-12-10 Thread Tim Laureska
I have a typical form where there are 10 - 15 form variables that must be passed through multiple templates... I have always used the hidden input method Is there a way to take all those hidden input lines and put them into one variable and just pass that one variable from template to template