>    When I re-direct a form submission using CFLOCATION the form data
>does not seem to re-direct

Correct.  The form data only applies to the template that the form was
submitted to.  Once you do a CFLOCATION you initiate a new page request, and
none of the form data will be available.

There are a couple of ways to do what you want:
1) Embed the data you want to pass to the second action page as URL params
in the CFLOCATION.
2) Embed the form data into the action page (i.e. what the form submitted
to) as hidden form fields into another form and then use JavaScript to
submit to the next action page. This isn't really a great idea because it
will break if the user doesn't have JS turned on.
3) Store the "persistent" form data in a cookie on the user's computer using
WDDX.  However, due to cookie limitations you can't have more than 4k of
data stored this way, so it may not work for you

The first option is probably the best one for your needs.  Since you are
posting to two different servers session variables probably aren't going to
work.

Hope this helps,
Seth Petry-Johnson
Argo Enterprise and Associates

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to