Re: Removing page from browser history

2006-08-02 Thread Frank W. Zammetti
FYI, Michael Jouravlev has spoken quite a bit about "controlling" the browser history via the PRG pattern: http://www.theserverside.com/tt/articles/article.tss?l=RedirectAfterPost Another alternative is to use AJAX techniques. AJAX requests do not get stored in the browser's history, hence the b

Re: Removing page from browser history

2006-08-02 Thread kalpesh modi
Have you tried using redirect in your action mapping? It should work. Thanks, -Kalpesh - How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.

Re: Removing page from browser history

2006-08-02 Thread Bart Busschots
I wouldn't rely on the client side for this. With FireFox and a few extensions you can have your wicked way on the client side and send anything you want to the server. Hence it's up to the server to look after security not the client. If you rely on the client alone your system will be very vu

Removing page from browser history

2006-08-02 Thread Raghuveer
I am able restrict the user going back to previous page from current page by browser "BACK" button. window.history.forward(1); How to restrict the user going to previous page by removing the Previous page accessed by user from BROWSER HISTORY(Cntrl+H in IE). I am using Struts Tiles Web applicat