Eva: Anzeige von Frames im IE 6.0

Beitrag lesen

Folgende Frame Struktur funktioniert im Netscape 7.1 jedoch nicht im IE 6.0. Warum?

-------------------------------
-          Banner             -
-------------------------------
-   nav  -         main       -
-        -                    -
-        -                    -
-        -                    -
-        -                    -
-------------------------------
-        copyright            -
-------------------------------

Problem:
Der copyright Frame wird im IE6.0
nicht angezeigt, im Netscape 7.1
aber schon.

Der Code sieht wie folgt aus:
-------------------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">

<html>
<head>
 <title>INDEX</title>
</head>

<frameset cols="1272">

<noframes>

<body>

Sorry, aber Ihr Browser unterstütz keine Frames!

</body>

</noframes>

<frameset rows="141,484,69" framespacing='0' frameborder='0' border=0>
   <frame frameborder='0' framespacing
    src="banner.htm"  noresize scrolling='no'
    name="banner" target="main">

<frameset cols="12,97">
    <frame frameborder='0' framespacing='0'
     src="navigation.htm" name="nav" scrolling="auto"
     target="main">

<frameset rows="484">
  <frame name="main" src="home.htm" scrolling="auto"
   target="_self">

</frameset>
</frameset>

<frame frameborder='4' framespacing
  src="copyright_abcsystems.htm"  noresize
  scrolling='auto' name="banner1" target="main"
  style="float: left">

</frameset>
</frameset>

-------------------------------------------------------
Wie kann ich dieses Problem lösen, was mach ich falsch?

Ich hoffe es kann mir jemand helfen!

Vielen Dank im Voraus!

Eva