Yeah, I know, debug output will do the same, but this piece of code is for those who just want to see the form variables that have been passed. Paste the following code in your action page and there you go:
<cfoutput>
<table>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
<cfloop list="#FORM.fieldnames#" index="item">
<tr>
<td>#item#</td>
<td>#Evaluate("FORM.#item#"
#</td>
</tr>
</cfloop>
</table>
</cfoutput>
<webguru>iqof188</webguru>
<cfoutput>
<table>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
<cfloop list="#FORM.fieldnames#" index="item">
<tr>
<td>#item#</td>
<td>#Evaluate("FORM.#item#"
</tr>
</cfloop>
</table>
</cfoutput>
<webguru>iqof188</webguru>