The refresh button on the browser is causing some undesirable effects on our web page in our app. It causes an apply action to occur and the value that was in the cache gets applied, even though the action was previously(before hitting the refresh button) undone.
I posted this problem on Java Ranch and one of the subscribers in the forum suggested I implement a PostRedirectGetListener that is at this second link: PRG Pattern <http://www.google.com/search?q=PRG+pattern> http://www.google.com/search?q=PRG+pattern+%2BJSF It works in that it redirects the Post Request to a Get Request and prevents the cache data from being applied again, but the problem I have is, it is preventing a dialog page from popping up. There is a navigation case if there are validations, then the dialog page should pop up. Any suggestions on how to solve this problem? We are using MyFaces 1.1.5 ,Trinidad 1.0.5 ,IE 7 and FireFox Thanks, Veena

