Check Out that Flex!
Posted by christopher on July 28th, 2006
Ever wanted to see the flex behind your flash forms (say that 10 times fast!) ? I inadvertantly learned of a great little trick over at Paul Robertsons Blog to do just that. It’s actually quite simple. After building your flash form, simply dump the form variable to the page. Example:
<cfform name="tstForm" method="post" format="flash">
<cfinput type="text" name="txtData" value="">
<cfinput type="submit" name="btnSubmit" value="">
</cfform>
<cfdump var="#tstForm#">
This will not work after the form has been submitted, since obviously that variable is disposed.








