
Mathew Robertson wrote:
Hi guys,
It is possible to make MSIE work with xhtml, although your sanity may be lost in the process.
1. the file extension itself needs to be ".xml" and the webserver should set the mime-type of "application/xml".
2. the page itself should have the following header:
<?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="copy.xsl"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" ...
3. the file "copy.xsl" specified above (could be any name really...) should have the contents:
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform"> <template match="/"> <copy-of select="."/> </template> </stylesheet>
Maybe this helps...
Maybe, but we need folks to be able to browse HTML docs locally as well :-( John.