IE8 Form Not Submitting (Intermittent)
I have a complex classic ASP system that has worked well for years but has recently started having a strange and intermittent problem. On some forms, folks will report that they cl
Solution 1:
One solution might be to force IE8 into compatibility mode, so that behaves in a similar manner to IE7.
To do this, you must place a special meta tag inside the <head> section of your page. An ideal place to do this would be in a master page/template.
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Hope this helps.
Post a Comment for "IE8 Form Not Submitting (Intermittent)"