我们有一个带有嵌入式IE控件的winforms应用程序。
在这个IE控件中,我们运行一个Web应用程序(我控制Web应用程序,但不控制winforms应用程序)。
在Web应用程序中,我运行一些javascript来打开一个子窗口并用HTML填充它:
var features = "menubar=no,location=no,resizable,scrollbars,status=no,width=800,height=600,top=10,left=10";
newTarget = "reportWin" + String ( Math.random () * 1000000000000 ).replace( /\./g ,"" );
reportWindow = window.open('', newTarget, features);
var d = reportWindow.document; // <-- Exception is thrown here
d.open();
d.write('<head>\r\n<title>\r\n...\r\n</title>\r\n</head>');
d.write('<body style="height: 90%;">\r\n<table style="height: 100%; width: 100%;" border="0">\r\n<tr>\r\n<td align="center" valign="middle" style="text-align:center;">\r\n');
d.write(...);
d.close();
当我们在这个WinForms应用程序中运行Web应用程序(但不是在其自身或在另一个WinForms应用程序中)时,我们在指定的行处出现Javascript错误:
Line 0: Access denied
关于为什么会发生这种情况或者如何避免这种情况的任何想法?请注意,窗口未打开URL;它只是一个空窗口。
在同一个应用程序中,在同一个域中打开一个具有指定URL的窗口可以正常工作。
答案 0 :(得分:5)
基于:
您遇到的问题是,打开的Url需要与打开它的页面位于同一个域中。据推测,空白的Url不会共享其创建者的域名。我写了几个快速测试网页并找到了
var reportWindow = window.open('', newTarget, features);
导致访问被拒绝错误。var reportWindow = window.open('http://google.com', newTarget, features);
var reportWindow = window.open('WebForm2.aspx', newTarget, features);
最后一个弹出一个指向WebForm2.aspx
的窗口,该窗口执行此代码:
window.document.open();
window.document.write('<head>\r\n<title>\r\n...\r\n</title>\r\n</head>');
window.document.write('test<body style="height: 90%;">\r\n<table style="height: 100%; width: 100%;" border="0">\r\n<tr>\r\n<td align="center" valign="middle" style="text-align:center;">\r\n');
window.document.close();