我有个aspx文件在同一个页面调用两次
<script src="test1.aspx?ID=1"></script>
<script src="test1.aspx?ID=2"></script>test1.aspx js代码如下var ID='<%=Request.QueryString["ID"]%>'
document.write('<span id="sp1"></span>');
Read();
function Read()
{
    alert(id);//这里显示的ID总是最后一个2的值
    sp1.innerhTML=(通过XMLHttp从网站读取最新数);
    setTimeout("Read()",1000);
}请问可以通过什么办法可以使两sp1定时更新相应的内容呀?我使用了数据组也不行