[Zope] RESPONSE.redirect?
Dylan Reinhardt
zope@dylanreinhardt.com
Thu, 17 Oct 2002 13:56:23 -0700
What about:
<dtml-call "RESPONSE.redirect('reportPage_html?query_start=3')">
Does that get you what you're looking for?
You could skip the cookie thing entirely by using something like:
<dtml-call "RESPONSE.redirect('reportPage_html?query_start=3&changed=1')">
And then put something like this in reportPage:
<dtml-if changed>
Record Edited
</dtml-if>
HTH
Dylan
At 02:05 PM 10/17/2002 -0600, you wrote:
>I have a report from which you can choose to edit or delete. When someone
>chooses to edit a record, I would like to be able to set a cookie from the
>edit_processor and redirect them back to the report on the same page they
>started ie: "reportPage_html?query_start=3", and if the cookie is present
>display a message that the changes have been saved.
>
>If I do <dtml-call "RESPONSE.redirect('reportPage_html')"> it returns them
>to the first page of queries. If I do
><dtml-call "RESPONSE.redirect('javascript:history.back()')"> It returns them
>to the corect page, but the cookie is not read.
>
>Does anyone have any ideas how this could be accomplished?
>
>Michael
>
>_______________________________________________
>Zope maillist - Zope@zope.org
>http://lists.zope.org/mailman/listinfo/zope
>** No cross posts or HTML encoding! **
>(Related lists -
> http://lists.zope.org/mailman/listinfo/zope-announce
> http://lists.zope.org/mailman/listinfo/zope-dev )