I had a problem with a site I'm programming when running it in IE11.
After putting the tag inside my code so that the code is emulated as IE 9:
<head id="Head1" runat="server">
<meta http-equiv="x-ua-compatible" content="IE=9" />
It was all working until you got to the Callback function:
function CallServer(arg, context) {WebForm_DoCallback('__Page',arg,retornoCallback,"",erroCallback,true); }
And the message: 'WebForm_DoCallback' não está definido
How to make the code run normally?