Reputation: 810
I am showing my modaldialog like that:
<script>
function fnOpen() {
window.showModalDialog("CopyPasteWizard.aspx", "", "dialogHeight: 500px; dialogWidth: 800px; resizable: off; scroll:off;")
};
</script>
In my parent page I call that js function and my dialog opens. I need that when dialog closed, dialog caller parent page should be postback.
how can I do that?
Upvotes: 0
Views: 1342