Incorporando texto / html em um objeto (em vez de um 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>

Sob todos os navegadores, exceto o IE, todos os quatro desses testes funcionam. No IE 6 e 7, o último falha e mostra um quadro vazio. Existe uma solução alternativa que permita ao IE carregar o html externo em um objeto?

questionAnswers(1)

yourAnswerToTheQuestion