FSSession and delete cookie
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? Thank's __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
You could try: <dtml-call "RESPONSE.expireCookie('main_counter'"> which might work. Chris 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?
Thank's
__________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
_______________________________________________ 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 )
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
participants (3)
-
Chris Withers -
Marc DANAI -
Pavlos Christoforou