It sounds like you're wanting to do your own action with your form data, 
using your own code, but then also pass the data onto a shopping cart 
app that you can't/don't want to hack.

Point your main form at your own code - do your own jiggling with it - 
then simply output a new form with hidden vars and a JS call to submit 
the form, at the end of your own code. i.e.

<form name='formPart2' action='whatever' method='post'>
<cfloop list='#form.fieldnames#' index='field'>
<input type='hidden' name='#field#' value='#form[field]#'>
</cfloop>
</form>

<script langauge='Javascript'>
document.formPart2.submit();
</script>

(Just threw that together real quick, may not be syntactically accurate :D)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

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

Reply via email to