How do i get all the formfields posted?
On the receiving page.. thus the page you are posting to you can get the fieldnames in the following matter.
<cfoutput>
#form.fieldnames#
</cfoutput>
Get the values with every formfield submitted
<cfloop list="#form.fieldnames#" index="formfield">
#formfield# = #form[formfield]#
</cfloop>
3123 viewed | Your opinion... | del.icio.us | Digg it | Tjarko @ 17/11/02 15:00 cet



