I tested my site on IE10. View source IE 10 not include some ScriptResource.axd files. But I copy site url and paste chrome work fine.
This code not included IE10.( Right click -> View Source )
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}