I would say that you were lucky if the effect of a double submission was only a double email - are you sure that you are not doing anything else twice as well?
Although the browser is misbehaving you should take double submissions into account and code to protect against them. After all if the page is taking a long time to load the user may hit it again. In my app I have something like this:
# in cgi: (have loaded the correct order into $order)
$order->submit;
# in order module.
sub submit {
my $self = shift;
return 1 if $self->submitted;
...
}
This means that it is not possible to submit the order twice. Also all post submit actions are dealt with in the module, such as sending email confirmations.
--tidiness is the memory loss of environmental mnemonics
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.