How to kill the Notes Session, when user click on the Logout Link

I am developing a web application in lotus notes. I am facing problem, while user clicks on the “Logout” link. It displays the logout page but If user click on the back button, he/she is able to access the database.

What I want, if once click on the logout link. the next time when user access the database, he/she must loggedin into the database

Please suggest me the way to solve this problem.

Thank you

Subject: How to kill the Notes Session, when user click on the Logout Link

Ensure that your domino server is using session authentication and not basic HTTP authentication.

regards,

Bram Kerkhof

Subject: RE: How to kill the Notes Session, when user click on the Logout Link

using session authentication doesn’t help. Even if you have it turned on, and even if you use ?logout, you can still hit back arrow (in firefox at least), and be back viewing the web application you just left.

Subject: RE: How to kill the Notes Session, when user click on the Logout Link

Any solutions? I am looking for it.

Subject: How to kill the Notes Session, when user click on the Logout Link

You call an URL (pointing to you appliocation) with the parameter ?Logout appended

Subject: How to kill the Notes Session, when user click on the Logout Link

Can you try using document.location.replace() it is used to clear the last entry in the history and replace it with the address of a new url. replace() removes the URL of the current document from the document history, meaning that it is not possible to use the “back” button to navigate back to the original document.

HTML:

Replace document