Review the following for more information about how to use Object with IE: http://aplus.rs/web-dev/insert-html-page-into-another-html-page/
It boils down to a difference in what IE expects versus other browsers. For IE, you have to use the classid attribute instead of the type attribute. For example (from the above referenced site):
<objecttype="text/html"data="some.html"><p>backup content</p></object>
Note that the classid is specific to the content type that you are trying to server.
Post a Comment for "Embedding Text/html In An Object (instead Of An Iframe)"