Hi,
To better understand your issue, please confirm the follow information: Did you get any error message? What is your IE version?
We need to make sure we create XMLHttpRequest object correctly. You can try the following process to create it:
function GetXmlHttpObject()
{
var objXMLHttp=null;
if(window.XMLHttpRequest)
{
// For IE7, Mozilla, Safari, Opera, etc
objXMLHttp = new XMLHttpRequest();
}
else if (window.ActiveXObject) //For IE 5.X, 6
{
try
{
objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
}
}
return objXMLHttp;
}
I look forward to receiving your test results.