| Author |
time to wait before next submission
|
nathan sullivan
Greenhorn
Joined: Dec 20, 2010
Posts: 3
|
|
Hi,
how can I implement a feature on the server side where after a user clicks submit for the first time, clicking submit again will bring the user to a page showing "Please wait X seconds to submit". I've seen this feature on several sites but can't resources on it.
Thanks.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
When the user clicks submit, store the current time in the user's session. The next time they click submit, compare the current time to the time last stored in the session. If the difference is less than X seconds, redirect to the page which tells them to wait.
|
 |
Piyush Mangal
Ranch Hand
Joined: Jan 22, 2007
Posts: 196
|
|
|
You can show a div with a Waiting GIF image on page submit. As soon as response from the server comes , browser will display the next page.
|
 |
nathan sullivan
Greenhorn
Joined: Dec 20, 2010
Posts: 3
|
|
|
Thanks Paul. Can this be all done in the servlet or must I use some listener?
|
 |
 |
|
|
subject: time to wait before next submission
|
|
|