aspose file tools
The moose likes JSP and the fly likes Session - logout problem Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Session - logout problem" Watch "Session - logout problem" New topic
Author

Session - logout problem

Jahnvi Vyas
Ranch Hand

Joined: May 03, 2006
Posts: 36
Hi,

I am developing a intranet application using JSP. In that one user logs out and when another user logs in that and if he presses back button of web browser then it shows previous users pages.

To disallow this, in log out process i write session.invalidate() method and i am checking at every page whether session is new or not with session.isNew(). But this doesnt work.

Anybody has idea why it happens. Or any other solution??

Thanks..

- Jahnvi
yue zhang
Greenhorn

Joined: May 15, 2006
Posts: 5
try this :
<%
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
%>
may be can help you
yue zhang
Greenhorn

Joined: May 15, 2006
Posts: 5
this article is what you need

http://www.javaworld.com/javaworld/jw-09-2004/jw-0927-logout.html
Jahnvi Vyas
Ranch Hand

Joined: May 03, 2006
Posts: 36
Thankz Yue!
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Session - logout problem
 
Similar Threads
Session Deletion help.
Session
sessions
how to use session
session info into db