I am encountering an issue when trying to embed my web application inside Sharepoint as a web part. Everything works smoothly on IE8, IE9, and Firefox. However, when I try to access the page using IE7, all I see is a blank (white) IFrame even though the inner content has loaded. Strangely, the same webapp functions perfectly when opened without the Iframe - even in IE7.
The problem persists with IE8/IE9 when using the META tag:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Additionally, I have noticed that clicking with the right mouse button on the white area allows me to view the source code of the page embedded in the IFrame.
This is how my IFrame is embedded:
<iframe title="WebApp" frameBorder="0" id="MSOPageViewerWebPart_WebPartWPQ2" style="z-index: 1000" name="MSOPageViewerWebPart_WebPartWPQ2" width="1200px"
height="1200px" src="http://webapps/app1/beta.webapp.aspx?ContentAreaHeight=669px" ddf_src="http://webapps/app1/beta.webapp.aspx?ContentAreaHeight=669px"
<div class="UserGeneric">No IFRames supported.</div></iframe>
It doesn't seem to make a difference whether I manually embed the IFrame using the Content Editor web part or the Page Viewer webpart in Sharepoint.
If anyone has any insights or solutions, please help me out!