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();
}
}
The most common case when such an issue appears is situation when ASP.NET fails to detect browser as JavaScript capable. In case of IE10 there are KBs which you should have installed on your development machine and servers. Please check if you have them, there are described in details here (with some other fix possibilities):