Skip to content Skip to sidebar Skip to footer

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.

<metahttp-equiv="X-UA-Compatible"content="IE=EmulateIE7" />

Hope this helps.

Post a Comment for "Ie8 Form Not Submitting (intermittent)"