我正在尝试在php iframe中加载一个asp.net应用程序url。当我尝试运行php应用程序时,我收到以下错误
错误:拒绝访问属性“Value_Object”webpage.aspx(第500行,第1行)的权限
请你帮我解决这个问题
function prepareFrame() { var ifrm = document.createElement("iframe"); ifrm.setAttribute("src", "http://iisserver/aspnet/WebPage.aspx"); ifrm.style.width = "640px"; ifrm.style.height = "480px"; document.body.appendChild(ifrm); } prepareFrame();
它没有在php应用程序中显示任何错误,它在asp.net文件中显示错误。