ASP.NET實現頁面重新整理的方法

來源:互聯網
上載者:User

< meta http-equiv="refresh" content="300; url=target.html"> 用window.location.href實現重新整理另個架構頁面
在寫asp.net程式的時候,我們經常遇到跳轉頁面的問題,我們經常使用Response.Redirect ,如果客戶要在跳轉的時候使用提示,這個就不靈光了,如:
Response.Write("< script>alert('恭喜您,註冊成功!'); < /script>"); Response.Redirect("main.html"); 這時候我們的提示內容沒有出來就跳轉了,和Response.Redirect("main.html"); 沒有任何區別。
這時我們採用下面代碼實驗一下ASP.NET頁面重新整理:
Response.Write("< script language=javascript>alert('恭喜您,註冊成功!')< /script>"); Response.Write("< script language=javascript>window.location.href='main.html'< /script>"); 這個即實現了我們的要求,在提示後,跳轉頁面。
最重要的是window.location.href 語句可以實現一個架構的頁面在執行伺服器端代碼後重新整理另一個架構的頁面(Response.Redirect無法達到,至少我沒有發現):
如:index.htm頁面中有二個架構,分別為 frameLeft和frameRight,在frameRight頁面中執行伺服器端代碼後重新整理frameLeft中的頁面。
先前最常見的是註冊之後,自動重新整理登陸框,讓登陸框換成已登陸頁面,只要在註冊成功的代碼之後加上一段,即可以實現重新整理另個架構的頁面。代碼如下:
Response.Write("< script language=javascript>alert('恭喜您,註冊成功!')< /script>"); Response.Write("< script language=javascript>window.parent.frameLeft.location.href='main.html'< /script>"); ASP.NET頁面重新整理:自動重新整理頁面的實現方法總結:
1)
< meta http-equiv="refresh"content="10; url=跳轉的頁面"> 10表示間隔10秒重新整理一次
2)
< script language=''javascript''> window.location.reload(true); < /script> 如果是你要重新整理某一個iframe就把window給換成frame的名字或ID號
3)
< script language=''javascript''> window.navigate("本頁面url"); < /script> 4>
function abc() { window.location.href="/blog/window.location.href"; setTimeout("abc()",10000); } 重新整理本頁:
Response.Write("< script language=javascript>window.location.href=window.location.href; < /script>") 重新整理父頁:
Response.Write("< script language=javascript>opener.location.href=opener.location.href; < /script>") 轉到指定頁:
Response.Write("< script language=javascript>window.location.href='yourpage.aspx'; < /script>") 
重新整理頁面實現方式總結(HTML,ASP,JS)
'by aloxy
定時重新整理:
1,
< script>setTimeout("location.href='url'",2000)< /script> 說明:url是要重新整理的頁面URL地址
2000是等待時間=2秒,
2,
< 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地址
3,

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.