asp.net 页面刷新多种方法详解(附实例)
本文导语: asp.net页面刷新的实现方法: 第一: 代码示例: private void button1_click( object sender, system.eventargs e ) { response.redirect( request.url.tostring( ) ); } 第二: 代码示例: private void button2_click( object sender, system.eventargs e ) { response.writ...
asp.net页面刷新的实现方法:
第一:
{
response.redirect( request.url.tostring( ) );
}
第二:
{
response.write( " window.location.href=/blog_article/document.url; " );
}
第三:
{
response.addheader( "refresh","0" );
}
第四:
{
//好像有些不对?
//response.write( " window.location.reload( ); " ); }
第五:
自动刷新页面
第六:
用window.location.href实现刷新另个框架页面
在写asp.net程序的时候,我们经常遇到跳转页面的问题,我们经常使用response.redirect ,如果客户要在跳转的时候使用提示,这个就不灵光了,如:
这时提示内容没有出来就跳转了,和response.redirect("main.html"); 没有任何区别。(www. 脚本学堂)
这时采用下面代码试验一下asp.net页面刷新:
这个即实现了我们的要求,在提示后,跳转页面。
最重要的是window.location.href 语句可以实现一个框架的页面在执行服务器端代码后刷新另一个框架的页面(response.redirect无法达到,至少我没有发现):
如:index.htm页面中有二个框架,分别为 frameleft和frameright,在frameright页面中执行服务器端代码后刷新frameleft中的页面。
先前最常见的是注册之后,自动刷新登陆框,让登陆框换成已登陆页面,只要在注册成功的代码之后加上一段,即可以实现刷新另个框架的页面。代码如下:
response.write(" alert('恭喜您,注册成功!') "); response.write(" window.parent.frameleft.location.href='/blog_article/main.html' "); asp.net页面刷新:自动刷新页面的实现方法总结:
1)
2)
3)
function abc() { window.location.href="/blog/window.location.href"; settimeout("abc()",10000); } 刷新本页:
response.write(" window.location.href=/blog_article/window.location.href; ") 刷新父页:
response.write(" opener.location.href=/blog_article/opener.location.href; ") 转到指定页:
response.write(" window.location.href='/blog_article/yourpage.html'; ")
附,刷新页面实现方式总结(html,asp,js)
定时刷新:
1,
2000是等待时间=2秒,
2,
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,
说明:一般用一个url参数或者表单传值判断是否发生某个操作然后利用response.redirect 刷新。(www. )
4,刷新框架页
opener.location.reload(); //第三个打开窗口
function show(mylink,mytitle,width,height) {mailwin=window.open(mylink,mytitle,'top=350,left=460,width='+width+',height='+height+',scrollbars=no')} 有关asp.net页面刷新的问题,收藏这几种方法会有用的。