Ajax IE8不兼容有关问题

Ajax IE8不兼容问题
Ajax动态更新数据,火狐,谷歌都可以正常获取以及动态更新,但是IE8取到数据都不对,刷新网页数据也不变化。

function ReflashTime()

var xmlhttp;
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("RunTime").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","/Ajax/GetRunTime.asp",true);
xmlhttp.send();
setTimeout("ReflashTime()",1000);//每隔1秒执行一次 
}

------解决思路----------------------
ie下get缓存了,加时间戳

 xmlhttp.open("GET","/Ajax/GetRunTime.asp?"+new Date().getTime(),true);