如何在关闭子窗口上重新启动asp.net父窗口标签 [英] how to rerfesh asp.net parent window label on closing child window

查看:76
本文介绍了如何在关闭子窗口上重新启动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

推荐答案

您好,请查看以下链接



http://www.aspsnippets。 com / Articles / Refresh-Parent-window-from-Child-window-on-close-using-JavaScript.aspx [ ^ ]

http://www.etechpulse.com/2012/11/how-to-refresh -parent-window-when-child.html [ ^ ]

http://www.aspdotnet-suresh.com/2012/11/javascript-refresh-parent-window-when.html [ ^ ]
Hi check the below links

http://www.aspsnippets.com/Articles/Refresh-Parent-window-from-Child-window-on-close-using-JavaScript.aspx[^]
http://www.etechpulse.com/2012/11/how-to-refresh-parent-window-when-child.html[^]
http://www.aspdotnet-suresh.com/2012/11/javascript-refresh-parent-window-when.html[^]


这将重新加载通过选择下拉项目而不实际重新创建回发的页面内容。

This will reload the content of the page without actually recreating the postback fired by selecting the dropdown item.
<script>
        window.onunload = refreshParent;
        function refreshParent() {
            var loc = window.opener.location;
            window.opener.location = loc;
        }
    </script>


嗨看看这篇文章



http://www.dotnetpools.com/2013/11/how-to- refresh-aspnet-parent-window.html [ ^ ]
hi have a look of this article

http://www.dotnetpools.com/2013/11/how-to-refresh-aspnet-parent-window.html[^]


这篇关于如何在关闭子窗口上重新启动asp.net父窗口标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆