Why my <IFRAME> is reloaded infinitely?
Hello!
I need to hace a JSPs containing 2 different JSPs. The real reason is that I need 2 (very) big DataTables at the same time in the screen. Users have to check any of the rows in both DataTable and click a special action for them.
Then I had thought that I could make 2 differents JSPs (that contains a big DataTable) and in the second JSP, try to add a <IFRAME> containing the another JSP (with his big DataTable). Actually, I do this to force to appear two scrollbars that make the work for the users easier.
When I try to do it, the navigator turns mad. It tries to recall itself infinitely.
<iframe id="localscene" name="localscene" src="faces/JSPcontainingDataTable.jsp" frameborder="0" scrolling="auto" style="position:absolute; left:0px; top:0px; width:800; height:600; z-index:5">
Is there another way to do this (or something similar)?
Thanks in advance.

