梓骏

导航

ASP.NET页面跳转,定时刷新方法集合

//第1:
/*-- 内置跳转 ----*/
Response.Redirect( Request.Url.ToString( ) );
//第2:
/*----内置 html ----*/
Response.AddHeader( "Refresh","0" );
//将指定的标头和值添加到此响应的 HTTP 标头。
//第3:
Response.Write( "
<script language=javascript>
window.location.reload( );
< /script>"
);
//第4:
/*-- 输出js代码 跳转 ----*/
Response.Write( "
< script language=javascript>
window.location.href=document.URL;
< /script>
");
/*第5: ----js ----*/
window.location.reload( );
//第6:
< meta http-equiv="refresh" content="300; url=target.html"> 用window.location.href
//7
< script language=''javascript''> window.navigate("本页面url"); < /script>
===================================================================
定时刷新:
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地址

posted on 2012-07-28 18:57  梓骏  阅读(530)  评论(0编辑  收藏  举报