﻿   function myRefresh()
   {
       var httpRequest =new ActiveXObject("microsoft.xmlhttp");
       httpRequest.open("GET","test.aspx",false);
       httpRequest.send(null);
       
       setTimeout("myRefresh()",30*1000);
       
   }
   myRefresh();
