Hallo,
ich habe mir eine HTML-Seite mit einem Iframe gemacht. Mein problem ist, das alles was nach der Definition des Iframe kommt sowohl von Mozilla in der Version 1.7.12 als auch vom IE6 ignoriert werden. Ich weiss mir nicht mehr zu helfen. Es sollte noch neben dem IFrame eine Tabelle zur Navigation angezeigt werden. Hier der HTML-Quelltext:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<table>
<tr>
<td height="10"> </td>
<TD rowspan="2"> <iframe src="http://192.168.2.1">
</td>
</tr>
<tr>
<td>
<table>
<tr>
<th colspan="2">Systemaufgaben:</th>
</tr>
<tr>
<td width="15"> </td>
<td><A href="router/index.php">Siemens SX 541 DSl</a></td>
</tr>
<tr>
<td width="15"> </td>
<td><a href="firewall/index.php">IPCOP</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>