As well as the form.fieldNames sugested by Barney and Charlie. Since the form and url scopes are structures, as are all variable scopes in CF, you can use any of the structure functions or tags to parse the data. Such as:
<cfoutput> #structKeyList(form)# OR #structKeyList(url)# OR <cfloop collection="#form#" item="field"> #form[field]# </cfloop> OR <cfloop collection="#url#" item="field"> #url[field]# </cfloop> </cfoutput> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316997 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

