>>Stick the form in the session scope maybe?

Definitely:
To save the form:
<CFSET session.form = Duplicate(form)>

Then in the form action template:

<CFIF isDefined("session.form")>
    <!--- For some unknown reason, duplicate() doesn't work here --->
    <CFLOOP COLLECTION="#session.form#" ITEM="field">
        <CFSET form[field] = session.form[field]>
    </CFLOOP>
   <CFSET structDelete (session, "form")>
</CFIF>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298701
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to