Hi All
In every page of my
JSF application i have logout hyper link and in my logout bean i am invalidating the session and clearing the response header using
session.invalidate();
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
if i click tha back button of browser still takes me to my previous page but it doen't allow any action since i already removed the session scoped beans.dio i need to remove the history using
java script?
is there any other best way of achieving this?
Thanks in advance
Ven