IT猫扑网:您身边最放心的安全下载站! 最新更新| 软件分类| 专题汇总| 手机版

您当前所在位置:IT猫扑网 > 网络编程 > .Net编程 > 自动刷新页面的实现方法总结

自动刷新页面的实现方法总结

时间:2015-06-28 00:00 来源:IT猫扑网|http://www.itmop.com/ 作者:网管联盟 我要评论(0)

1)

<meta http-equiv=&refresh&content=&10;url=http://www.itmop.com/&>

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,<%response.redirect url%>

说明:一般用一个url参数或者表单传值判断是否发生某个操作,然后利用response.redirect 刷新。

4,刷新框架页

〈script language=javascript>top.leftFrm.location.reload();parent.frmTop.location.reload();</script〉

弹出窗体后再刷新的问题

Response.Write(&<script>window.showModalDialog('../OA/SPCL.aspx',window,'dialogHeight: 300px; dialogWidth: 427px; dialogTop: 200px; dialogLeft: 133px')</script>&);//open

Response.Write(&<script>document.location=document.location;</script>&);

在子窗体页面代码head中加入<base target=&_self&/>

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

在框架页中右面刷新左面

//刷新框架页左半部分

Response.Write(&<script language=javascript>&);

Response.Write(&parent.left.location.href='PayDetailManage_Left.aspx'&);

Response.Write(&</script>&);

关键词标签:自动刷新页面

相关阅读 Asp.Net中动态页面转静态页面

文章评论
发表评论

热门文章 在ASP.NET MVC中实现大文件异步上传 在ASP.NET MVC中实现大文件异步上传 在.NET环境下为网站增加IP过滤功能 在.NET环境下为网站增加IP过滤功能 诛仙3飞升任务怎么做-诛仙3飞升任务流程最新2022 诛仙3飞升任务怎么做-诛仙3飞升任务流程最新2022 ASP.NET 如何避免页面重新整理时重复送出 ASP.NET 如何避免页面重新整理时重复送出 钟离圣遗物推荐-原神钟离圣遗物词条 钟离圣遗物推荐-原神钟离圣遗物词条

人气排行 诛仙3飞升任务怎么做-诛仙3飞升任务流程最新2022 asp.net表单提交方法GETPOST 在ASP.NET中如何判断用户IE浏览器的版本 Asp.net中messagebox的实现方法 Asp.net中的web.config配置 在ASP.NET MVC中实现大文件异步上传 asp.net获取URL和IP地址 FileUpload上传多文件出现错误的解决方法 ASP.NET Web.config配置详解 Asp.net常用的51个代码(非常实用) ASP.NET打开word文档出错的解决办法 让你的.NET程序兼容不同版本的Dll文件