An easier & faster way is:
<CFLOOP list="#form.FIELDNAMES#" index="FieldName">
<CFOUTPUT>
#FieldName# = #form[FieldName]#<BR>
</CFOUTPUT>
</CFLOOP>
works with most structures, although, I've had problems with queries & never
bothered to check it out.
I've also found in one strange occurance where a specific field kept being
dropped from form.fieldnames... was damn annoying.
alternative (form structure):
<cfloop collection="#form" item="fieldname">
<cfoutput>
#FieldName# = #form[FieldName]#<BR>
</CFOUTPUT>
</CFLOOP>
Cameron
------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body or visit the list page at www.houseoffusion.com