Disabling Forward Button

hi,any one can suggets me to disable the forward button in browser using JSP.Bala
[102 byte] By [art84a] at [2007-11-27 5:30:57]
# 1
Disabling parts of the user environment is generally done to hide some bad design at the server side. And that is not a good practice.What exactly is going wrong? What should be fixed? Do you want to prevent the POST being re-submitted?
BalusCa at 2007-7-12 14:55:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
exactly, i wnat to prevent the post re-submitted.Bala
art84a at 2007-7-12 14:55:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Implement a POST-Redirect-GET pattern. After finishing the processing of the POST, but right before sending any response, do a redirect to the same URL.
BalusCa at 2007-7-12 14:55:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
i couldn't know how can i implement that in application.Bala
art84a at 2007-7-12 14:55:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5
That's a pity then.
BalusCa at 2007-7-12 14:55:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...