I sincerely hate Internet Explorer sometimes. I never like it. Today it really pissed me off. If you use multiple <button>
tags in one form, think again. It doesn't work in IE like it should do [...in Firefox].
If you have a form like this:
<form action="showRequestVariables">
<button type="submit" name="button1">Button1</button>
<button type="submit" name="button2">Button2</button>
</form>
Then, which ever button you press you'll get these request variables if you use Internet Explorer:
button1 = "Button1"
button2 = "Button2"
In Firefox you only get one; the one you pressed. Doesn't that seem logical? The Firfox way I mean.