dim strPath as string=request.path

解决方案 »

  1.   

    强制刷新:
    <script language="Javascript">
      window.location.reload();
    </script>
      

  2.   

    window.location.reload()
    Request.Url.ToString()
      

  3.   


    <meta http-equiv="Refresh" content="15;url=MagInfoList.aspx"> 这样一定可以
      

  4.   

    同意楼上的!!!!!!!!!!!!<meta http-equiv="Refresh" content="15;url=MagInfoList.aspx">
      

  5.   

    <script language="Javascript">
      window.location.reload();
    </script>
    请问这样属于 初次加载 还是 回发?
      

  6.   

    window.loaction.reload(true) ;
    初次加载吧,上次记得用模式窗口的时候,特意看了一下看了一下,运行 IsPostBack=false里的代码
      

  7.   

    // 如何得到当前页面的完整的url,如:"/default.aspx?id=123&name=xxx"
    string str = Request.Url.PathAndQuery;
      

  8.   

    // 如何得到当前页面的完整的url,如:"/default.aspx?id=123&name=xxx"
    //js
    var str = window.location.href;
    //刷新
    document.froms[0.submit();
    window.location.reload();
    window.execScript("refreash","");
      

  9.   

    1.javascript:location.reload();2.Response.Write(Request.Path);
      

  10.   

    自动刷新页面 
    实现:
    <meta HTTP-EQUIV=REFRESH CONTENT=300;URL=online.asp>
    1. 
    <meta http-equiv="refresh" content="5"> 
    2. 
    <body onload="setTimeout('history.go(0)',5000)">
    3.
    <body onload="setTimeout('this.location.reload();',5000)"> 
    4.
    setTimeout("document.location='www.usa.com'",3000) 
      

  11.   

    javascript:location.reload();<head>
    <!-- 每10秒自动刷新 -->
    <meta http-equiv="refresh" content="10">
    </head><BODY onreload="window.opener.location.reload();">
      

  12.   

    1.
    <meta http-equiv="Refresh" content="15;url=MagInfoList.aspx"> 这样一定可以
    这个是定义一定时间内刷新2.Response.Redirect("xxx.aspx")ye ke yi