[Zope] FSSession and delete cookie
Pavlos Christoforou
pavlos@gaaros.com
Thu, 23 Mar 2000 11:04:11 -0500 (EST)
On Thu, 23 Mar 2000, Marc DANAI wrote:
> Hi,
>
> How can delete cookie from browser using FSSession?
> I've tried all the combination but I did not succeed
> to find a right solution?
>
> <dtml-call FSSession.del('main_counter')> not-work
> <dtml-call "FSSession.del('main_counter')"> inv-syntax
> .....
> ....
>
> Any suggestion?
I am not usre what you need to do. The cookie name is SassionUID. If you
need to delete something from the FSSession data use FSSession.delete
like:
<dtml-call "FSSession.delete('main_counter')">
you can expire the cookie by ... reading Chris followup email (just
noticed it)
Pavlos