Forum Moderators: open
<html>
<body onLoad="showObj('definitionButton')">
<form action="main.jsp" method="post">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="height: 105;">
<c:import url="headerResult.jsp"/>
</td>
</tr>
<tr>
<td height="100%" valign="top" align="left">
<iframe id="table" name="porfi" scrolling="auto" name="table" marginwidth="20" style="width: 100%; height: 100%; border: 0px;" src="table.jsp">
Browser not support IFrames
</iframe>
</td>
</tr>
</form>
<tr>
<td style="height: 115;"><c:import url="footer.html"/></td>
</tr>
</table>
</body>
</html>
When i put on my URL ... [localhost:8080...] ... appears a blank page showing nothing .. żż?
Another thing to ask is if I could overlapp the tags ... see the form tag starts before the table tag and end's before ...
Thanks
<form>
<table>
<tr><td></td></tr>
</form>
<tr><td></td></tr>
</table>
But if the form element is opened before the table element, then you must first close </table> before you close </form>
<form>
<table>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</form>
or possibly better, nest the form inside a cell:
<table>
<tr><td></td></tr>
<tr><td><form></form></td></tr>
</table>