iain duncan schrieb: > Hi gurus, I'm a wee bit stumped here. When we use raise redirect, I > guess the user gets redirected but any get/post vars don't go with them, > which makes sense. Is it possible to force those to get passed on too? > > Basically I'm doing a checkout script where a form has to be submitted > to paypal and I'd like to hijack the submission process to keep a record > of the submission. I thought I'd have the final form submit to my method > and then redirect to paypal, but not sure whether that will work after > all.
You can't redirect POST, but GET is a simple matter of attaching the parameters url-encoded to the redirection target. Nothing special. Diez --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

