Oops, it should be: <cfwddx action="cfml2wddx" input="#form#" output="variables.avariable">
----- Original Message ----- From: [EMAIL PROTECTED] Date: Monday, May 13, 2002 8:48 am Subject: Re: How do i pass FORM variables from one action page to another one ? > Way easier and more compact: > > <cfwddx action="cfml2wddx" input="#form#" > output="#variables.avariable#"> > > <input type="hidden" name="aname" value="#htmlEditFormat > (variables.avariable)#"> > > ----- Original Message ----- > From: Jon Hall <[EMAIL PROTECTED]> > Date: Monday, May 13, 2002 7:55 am > Subject: Re: How do i pass FORM variables from one action page to > another one ? > > > /me plays virtual Raymond :) Just say no to evaluate! Here is a > > speedier way > > to do it. > > > > <cfloop index="send" list = "#form.fieldnames#"> > > <input type="hidden" name="#send#" value="#form[send]#"> > > </cfloop> > > > > jon > > ----- Original Message ----- > > > The simplest way is to loop through form.fieldnames. > > > > > > <cfloop index="send" list = "#form.fieldnames#"> > > > <input type="hidden" name="#send#" value="#evaluate(send)#"> > > > </cfloop> > > > > > > > ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

