Logout Problem

Hi AllA very Happy Christmas & New Year :slight_smile:

I have a logout prob. Im opening my web application thru a popup. It’s asking for login & opening a frameset. when i logout, it’s closing the window. but the prob is someone else can also open it thru that popup coz session is not closing.

and the same computer is using by more than one person. It’s an intranet site thru which that popup is coming.

Help me out pls.

Regards

Sanjay

Subject: RE: Logout Problem

Hi

I think the logout is not properly done. That’s why the session is not out.

After logout you redirect the page

top.location = self.location.href.substring(0,self.location.href.indexOf(‘.nsf’) +4) + “/?logout&redirectTo=http://”+window.document.forms[0].Server_Name.value+“/”+window.document.forms[0].DBNameTX.value+“/”;

This may solve your problem. May be the syntax of logout that you are using is not proper, so the session is not out.

Thank You

Anupam

Subject: RE: Logout Problem

thanks gayatri :slight_smile: