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>
> 
> 
> 
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to