Issue with Frames in Internet Explorer 10

808 Views Asked by At

The application which am working on has many JSPs which have many framesets. The application is working fine in Internet Explorer 8. Whereas the screen gets freezed when a JSP containing Frames are present in Internet Explorer 10.

Please find the part of Code which contains Frameset.

<FRAMESET id="xframe" marginheight="0" marginwidth="0" frameborder="no" border="0" framespacing="0" rows="285,*,0,0" >
<FRAME src="<%=JspPath%>basicempty.jsp" marginheight="0" marginwidth="0" name="WTicketDetailsHeader" scrolling="no"  noresize>
<FRAME src="<%=JspPath%>basicempty.jsp" marginheight="0" marginwidth="0" name="WTicketDetailsResult" scrolling="yes" noresize>
<FRAME src="<%=JspPath%>basicempty.jsp" marginheight="0" marginwidth="0" name="empty_result"       scrolling="no"  noresize>
<FRAME src="<%=JspPath%>basicempty.jsp" marginheight="0" marginwidth="0" name="toolbox_result"       scrolling="no"  noresize>
</FRAMESET>
0

There are 0 best solutions below