Ein HTML-Dokument, das Frames (auch iframes) enthält, muss den Doctype "Transitional" haben:
HTML-Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
@ Topic
Bei mir funktioniert folgender Code im IE jedenfalls einwandfrei:
HTML-Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Frametest</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
  </head>
  <body>
  <a href="http://mozilla.org/" target="dasframe">Bla</a>
  <iframe style="height: 500px; width: 500px;" src="http://google.de/" name="dasframe" id="dasframe"></iframe>  
  </body>
</html>