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
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: 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.