
May 25th, 2004, 04:08 AM
|
|
Registered User
|
|
Join Date: May 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
how to access parameters of python script in a ZPT
hi
iam trying to access parameters of a python script which have come from a ZPT and know iam redirecting to a new ZPT page and i want to access the fields ok the old page in these new ZPT page
the code of First ZPT page is
<form action="preview" method="post">
<input type ="text" name="t1">
<input type="submit" name="submit">
</form>
The python script
##parameter=id
response=context.REQUEST.RESPONSE
response.redirect('page')
the Page ZPT
here i want to access the text put in the above zpt page
Last edited by RohitBordia : May 25th, 2004 at 04:11 AM.
|