刷新页面的代码如下:
<script language="javascript">
<!--  
  var timeID;
  function startrefresh()
  {
    timeID = setTimeout("refresh()",10000);
  }
  function  refresh()
  {
    var  now  =  new  Date()
    var  hours  =  now.getHours()
    var  minutes  =  now.getMinutes()
    var  seconds  =  now.getSeconds()
    if(seconds >= 3)
    {
      location.reload();
    }
  }
//-->
</script>
请问,在.aspx.cs页面中如何停止刷新。