admin管理员组文章数量:1338762
i have iframe inside a page, and this iframe contain a submit button which will do some function.
What i want is: after the iframe submit finish, call the parent page to refresh.
i know how to refresh it:
parent.location.reload();
But i don't know how to do that after submit finish.
i have iframe inside a page, and this iframe contain a submit button which will do some function.
What i want is: after the iframe submit finish, call the parent page to refresh.
i know how to refresh it:
parent.location.reload();
But i don't know how to do that after submit finish.
Share Improve this question asked Dec 7, 2009 at 15:25 Amr ElgarhyAmr Elgarhy 69.1k70 gold badges192 silver badges310 bronze badges4 Answers
Reset to default 4Use an onload
event handler on your iframe. When it fires after the submit, execute your top.location.reload
...
// In parent
window.onload = function() {
document.getElementById("MY_IFRAME").onload = function() {
top.location.reload();
}
}
I solved this problem by adding this line of code in the code behind after all my methods finished:
ScriptManager.RegisterStartupScript(this, typeof(string), "script",
"<script type=text/javascript>
parent.location.href = parent.location.href;</script>", false);
And the reason i didn't write parent.location.reload()
and wrote parent.location.href = parent.location.href
is to don't send the data twice to server as i want a new fresh page load.
Submitting a form is the FINAL action on the document in the Iframe. Once you submit a form, that page has been "submitted" and is no longer active. If you refresh the parent first, you lose the Iframe. The moment you submit in the Iframe, you can no longer talk to the parent.
You can do one of a few things here:
- Target the PARENT when you submit the form, then the parent will have whatever you want in a NEW iframe on that page.
- Have the resulting page in the iframe reload the parent using JavaScript on the result page.
If you only want to refresh some parts of the parent page and won't need to refresh the whole page, and most of the times this is the case since this approach doesn't reload the iframe itself, you can just call a javascript function from the child page.
window.parent.myFunctionInParent('my argument');
The resource that guides you is here: Refresh parent page partially from iframe
Thanks.
本文标签: aspnetHow to refresh iframe parent page after a submit in the iframeStack Overflow
版权声明:本文标题:asp.net - How to refresh iframe parent page after a submit in the iframe? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743555299a2502222.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论