Vishal Manchanda

Greenhorn
+ Follow
since Aug 27, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Vishal Manchanda

How can we make the "Page Expired" option when user
> clicks on the Back button of the browser?(I am talking
> with respective Session tracking)
> I mean after coming to Logout page,instead of
> Logging out,if the user clicks on the Back button of
> the browser,it again opens returns main page without logging in.
I'm using JSP
session.invalidate is not working.
then i tried clearing the cache using
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
but now the exact situation is
if I login I enter the main page and then logging off brings me back to login page.
Now pressing the browser back button it shows something like
"page has expired press refresh button"
pressing the refresh button a dialog asks retry or cancel
if I press retry It again opens the main page without logging in.

Can you tell me how it will be done..?
20 years ago