本文介绍了如何在关闭子窗口上重新启动asp.net父窗口标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在关闭子窗口时仅刷新asp.net父窗口的标签而不刷新整个父页面。
请提供任何解决方案
感谢您的问候
rahul sharma
how to rerfesh only asp.net parent window's label on closing child window without refreshing whole parent page.
Please provide any solution
thank n regards
rahul sharma
推荐答案
<script>
window.onunload = refreshParent;
function refreshParent() {
var loc = window.opener.location;
window.opener.location = loc;
}
</script>
这篇关于如何在关闭子窗口上重新启动asp.net父窗口标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!