Reputation: 31
I have a problem with sending message. I create a jsp page with calling form to send message using method Post. when i click button refresh on browers FF, it automatically send message again. I don't want to again send it. How could i disable button refresh?.
Upvotes: 1
Views: 182
Reputation: 943185
You can't.
Instead, use the POST-Redirect-GET pattern.
Upvotes: 11