Forum Moderators: open
<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?