熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

自動刷新頁面的實現方法總結

2022-06-13   來源: .NET編程 

  )

  <meta httpequiv=refreshcontent=;url=跳轉的頁面>

  表示間隔秒刷新一次

  )

  <script language=javascript>

  windowlocationreload(true);

  </script>

  如果是你要刷新某一個iframe就把window給換成frame的名字或ID號

  )

  <script language=javascript>

  windownavigate(本頁面url);

  </script>

  >

  function abc()

  {

  windowlocation;

  setTimeout(abc());

  }

  刷新本頁

  ResponseWrite(<script language=javascript>windowlocationhref=windowlocationhref;</script>)

  刷新父頁

  ResponseWrite(<script language=javascript>openerlocationhref=openerlocationhref;</script>)

  轉到指定頁:

  ResponseWrite(<script language=javascript>windowlocation;</script>)

  刷新頁面實現方式總結(HTMLASPJS)

  by aloxy

  定時刷新

  <script>setTimeout(location)</script>

  說明url是要刷新的頁面URL地址

  是等待時間=

  <meta name=Refresh content=n;url>

  說明

  n is the number of seconds to wait before loading the specified URL

  url is an absolute URL to be loaded

  n是等待的時間以秒為單位

  url是要刷新的頁面URL地址

  <%responseredirect url%>

  說明一般用一個url參數或者表單傳值判斷是否發生某個操作然後利用responseredirect 刷新

  刷新框架頁

  〈script language=javascript>topleftFrmlocationreload();parentfrmToplocationreload();</script〉

  彈出窗體後再刷新的問題

  ResponseWrite(<script>windowshowModalDialog(/OA/SPCLaspxwindowdialogHeight: px; dialogWidth: px; dialogTop: px; dialogLeft: px)</script>);//open

  ResponseWrite(<script>documentlocation=documentlocation;</script>);

  在子窗體頁面代碼head中加入<base target=_self/>

  刷新的內容加在 if (!IsPostBack) 中

  在框架頁中右面刷新左面

  //刷新框架頁左半部分

  ResponseWrite(<script language=javascript>);

  ResponseWrite(parentleftlocation);

  ResponseWrite(</script>);


From:http://tw.wingwit.com/Article/program/net/201311/11830.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.