I’m using a logout script that works with IE7 but not Firefox. Does anyone have a great logout script that works for both?
Subject: Best Logout Script for IE & FF
Well, FWIW, I use Javascript:
document.cookie = "DomAuthSessId" + "=" + "" + "; expires=Friday, 01-Jan-1904 08:00:00 GMT ; path=/";
Which sets the session cookie to expired.
This assumes that your Domino server is running session-based authentication. It seems to work OK on any browser. I’ve used it for years with no problems.
HTH
Subject: RE: Best Logout Script for IE & FF
Thanks all… I like the one-liner! Will give it a try…
Subject: Best Logout Script for IE & FF
How does your current logout script look like?