steve
|
| Posted: 06/04/2004, 9:19 PM |
|
Although I've been using CCS for almost 2 years now, I've always passed parameters from one CCS page to another CCS page. Now I'm wanting have a CCS page post to a paypal page.
Paypal requires "post" mode form and I have pre-calculated fields I need to include. My general observation is that CCS does all the record submits as URL parameters rather than posted form data. Any idea how to have a CCS record form post in post mode?
Regards
---Steve
|
|
|
 |
peterr
Posts: 5971
|
| Posted: 06/05/2004, 1:33 AM |
|
CCS usually POSTs the data, but it Posts it to the same originating page and only after the data is validated and processed then it uses the URL to redirect users to the destination page.
You can also verify that the data is POSTed by searching the HTML for the word "method" and you should find method="post".
Actually once the data is posted then it is no longer possible to post it again from the server, therefore you should post the data directly to PayPal. In your case you can probably just change the form action within HTMLto post the data to PayPal instead of to CCS. For example change:
form action="{Action}" to form action="PayPal.com..."
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
|