how to track the browser back button at the time of user click the back button. i saw the www.icicibank.com website...when ever you click the back button ..they take you some page(let it be logout.jsp) ..giving messsage that session expire... even if you click the back button it redirect to the same page(logout.jsp)
how can acheive this?.. please can anyone tell me the idea?
You can generate an unique key for each page and keep it in session, which can be validated with each request. This unique key will match only once for a page, if it does not match show the appropriate error message to the user. Also no-cache can be used for pages, so that browser does not cache them.