This is a discussion on Can I prevent a form from being submitted again? within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Can I prevent a form from being submitted again?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| No. The server-side (e.g., CGI) program that processes the form submission must handle duplicate submissions gracefully. You could generate the form with a server-side (e.g., CGI) program that adds a hidden field with a unique session ID. Then the server-side program that processes the form submission can check the session ID against a list of previously used session IDs. If the session ID has already been used, then an appropriate action can be taken (e.g., reject the submission, or update the previously submitted data). Ultimately, your server-side program must be smart enough to handle resubmitted data. But you can avoid getting resubmitted data by not expiring the confirmation page from form submissions. Since you want to expire pages quickly when they have transient data, you might want to avoid putting transient data on the confirmation page. You could provide a link to a database query that returns transient data though |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I stop a form from being submitted? | kingmaker | HTML, CSS and Javascript Coding Techniques | 3 | 03-05-2008 02:55 AM |
| Date/time stamp a form field as the form is submitted | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 02-06-2008 10:16 PM |
| Date/Time stamp a form field as the form is submitted | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 01-17-2008 08:47 PM |
| How can I clear the form field values after the user has submitted the form for clien | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 11-01-2007 11:39 PM |
| Will my form be submitted when the user presses the Enter key? | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 09-13-2007 02:44 AM |