Forum Moderators: open

Message Too Old, No Replies

Why this IFRAME is diplaying its content in a popup in IE6?

         

miusa

7:01 pm on Apr 13, 2009 (gmt 0)

10+ Year Member



Hi,
I have designed a jsp (details.jsp)that is including two other jsp as below

<TABLE width="100%" height="100%" border="1" >
<TR>
<TD width="35%">
<jsp:include page="/WEB-INF/jsp/disbursement/pdfImage.jsp" />
</TD>


<TD width="65%" valign="top">
<jsp:include page="/WEB-INF/jsp/disbursement/reimbursementProcessor.jsp" />
</TD>
</TR>
</TABLE>

There is a IFRAME in pdfImage.jsp:


<IFRAME SRC="<%=request.getContextPath()%>/disbursement/Image.action"
TITLE="Reimbursement Documents"
WIDTH="100%"
HEIGHT="100%"
ALIGN="left"
FRAMEBORDER="0"
>
<!-- Alternate content for non-supporting browsers -->
<H2>Reimbursment Documents</H2>

</IFRAME>

My problem is, when "details.jsp" is invoked with IE7, it works fine. It display all pdf images on left side of the page and its content on right side. But when the same page is invoked with IE6, a new popup window appears that has all pdf images. Why does it behave like this in IE6? How do I solve this issue? It has to behave like IE7 in all browser version. Any guidence on this?

miusa

3:27 pm on Apr 17, 2009 (gmt 0)

10+ Year Member



I am still strugling with this. Any help will be appreciated

tedster

11:07 pm on Apr 17, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



The first thing that comes to mind is some kind of strange interaction with the kludged up IE6 security. Have you checked in on more than one computer?

And a second idea - have you checked the generated source? That might hold a clue.

miusa

2:48 pm on Apr 20, 2009 (gmt 0)

10+ Year Member



U have tested with couple of computer that has IE6 and everuone of them is displaying pDF i popup window

Geanarated source does not tell anything other than embabed IFRAME. What kind of security thing it may be. Something needs to be reset through internet Options?