> The code I use to get the querystring value looks as follows: > http://paste.plone.org/28109 (See highlighted lines) > > For some reason though, the code returns "None". Any idea what I could > be doing wrong?
if the HTTP method is HTTP POST Zope ignores query string parameters and uses POST parameters only. I am not sure if this is according to HTTP spec. As a workaround 1) Put query string parameters to hidden <input> when you render the form, so they will go along POST 2) Put query string parameters into session -Mikko --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "getpaid-dev" 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/getpaid-dev?hl=en -~----------~----~----~----~------~----~------~--~---
