javascript实现:<script>window.location=window.loaction</script>
or
<script>window.location.reload(true);</script>

解决方案 »

  1.   

    <html>
    <head>
    <meta http-equiv="Refresh" content="5">
    </head>
    <body>
    Welcome
    </body>
    </html>
      

  2.   

    楼上正解,每隔5秒刷新一次
    <meta http-equiv="Refresh" content="5">
      

  3.   

    如果使用frames,刷新某一frame页面
    window.top.frames.fraContent.window.location.href=top.frames.fraContent.window.location.href;
    window.top.frames["fraContent"].window.location.reload();
      

  4.   

    window.location.href="http://www.XXX.COM";
    Response.Redirect("http://www.XXX.COM");
    最常用.方法很多....
      

  5.   

    方法很多  让他定时刷新  或者转向本页 redirect
      

  6.   

    Response.Redirect( "当前页地址");
      

  7.   

    跳到这个页面Response.Redirect( "http://www.XXX.COM "); 
    在页面的HTML代码中写 
    <html>
    <head>
    <meta http-equiv="Refresh" content="5">
    </head>
    <body>
    Welcome
    </body>
    </html>
    http://www.XXX.COM这个页面就会自动刷新
      

  8.   

    JavaScript代码:
    <script>window.location=window.loaction</script>
      

  9.   

    每隔一段时间刷一次
    <html>
    <head>
    <meta http-equiv="Refresh" content="5">
    </head>
    <body>
      

  10.   

    JS的一种方法
    <script>window.location.href= "当前页地址"</script>
      

  11.   

    <script language=javascript>window.history.go(0);</script>
      

  12.   

    用javascript的reload()方法,其中可以传true或者false,两者的区别就是True的时候要回发到服务器。
      

  13.   

    用JS 的location = location就可以了.这样刷新还没有闪烁.
      

  14.   

    将page_load中执行的代码放在一个函数中,比如
    protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                InitPage();
            }    }
    protected void InitPage()
    {
        //页面初始化
    }需要刷新页面的地方,直接调用InitPage()函数就可以啦