• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JSP - Session

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello everybody, i am doing a work in jsp. u might be
knowing that while browsing some sites, when we go back after
getting logged out, we see a warning that the "THE PAGE HAS
EXPIRED". how is it possible.
I think that it's not enough to invalidate the session, to
do that. what are necessary tools to achieve the above.
with regards,
sreedhar
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please note that The Java Ranch has a naming policy, described here and "sreedhar" is not a valid name. Please choose one which meets the requirements.
Thanks.
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The back button works on the browser because the browser has cached the contents of the page.
if you include a directive to disallow the browser to cache pages, you should be good to go, as the browser will send another request to display that page once more.
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
was found from: http://wsabstract.com/script/script2/cachebust.shtml
reply
    Bookmark Topic Watch Topic
  • New Topic