ShowModalDialog で表示されるモーダル ダイアログがあります。その中には、モーダル ダイアログの外側の iframe に送信されるフォームがあります。送信が完了したら、モーダル ダイアログを閉じたい。window_onload
問題は、送信したページからモーダル ダイアログにアクセスできないことです。
モーダル ダイアログで:
form.method = "POST"
form.target = "myiframe"
form.action = "save.asp"
form.submit
save.asp で
sub window_onload
'Do stuff
Here i want to tell the modal dialog to close itself
end sub
これは可能ですか?