Incrustar texto / html en un Objeto (en lugar de un iframe)

<iframe data="/localfile.html" type="text/html" width="200" height="200"></iframe>
<iframe data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></iframe>
<object data="/localfile.html" type="text/html" width="200" height="200"></object>
<object data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></object>

En cada navegador, excepto IE, las 4 pruebas funcionan. En IE 6 y 7, el último falla y muestra un marco vacío. ¿Hay alguna solución que permita a IE cargar el html externo en un objeto?

Respuestas a la pregunta(1)

Su respuesta a la pregunta