自動重新整理頁面的asp.net實現的6種方法

來源:互聯網
上載者:User

自動重新整理頁面的asp教程.net實現的6種方法
第一:
private void Button1_Click( object sender, System.EventArgs e )  
{
     Response.Redirect( Request.Url.ToString( ) );
}
第二:
private void Button2_Click( object sender, System.EventArgs e )  
{
     Response.Write( "
     <script language=網頁特效>window.location.href=document.URL;
     </script>" );
}
第三:
private void Button3_Click( object sender, System.EventArgs e )  
{
     Response.AddHeader( "Refresh","0" );
}
第四:
private void Button6_Click( object sender, System.EventArgs e )  
{
     //好像有些不對?
     //Response.Write( "
     <script language=javascript>window.location.reload( );
     </script>" );
}
第五:(需替換<>)
<script><!--
var limit="3:00"
if ( document.images )
{
     var parselimit=limit.split( ":" )parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh( )
{
     if ( !document.images )returnif ( parselimit==1 )window.location.reload( )else
     {
         parselimit-=1curmin=Math.floor( parselimit/60 )cursec=parselimit%60if ( curmin!=0 )curtime=curmin+"分"+cursec+"秒後重刷本頁!"elsecurtime=cursec+"秒後重刷本頁!"window.status=curtimesetTimeout( "beginrefresh( )",1000 )
     }
}
window.onload=beginrefresh//-->   </script><DIV style="Z-INDEX: 102;
LEFT: 408px;
POSITION: absolute;
TOP: 232px" ms_positioning="text2D">
<P><FONT size="3">自動重新整理頁面</FONT></P>
</DIV>第六:
<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");沒有任何區別。

這時我們採用下面代碼實驗一下:

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>");

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.