Prior to IE9, I could open a local XML file using an XSL file. The browser will correctly find the XSL file specified in XML and will use it to convert the XML to an HTML page. This doesn't seem to be the case; I just get a blank page.
When I press F12 to get developer tools and enable IE7 or IE8, the XML file loads well. But I want to open it with IE9. However, using IE9 shows an error message
XML5658: Un signe « : » ne doit pas se trouver dans un nom.
And this corresponds to the line:
<?xml:stylesheet type="text/xsl" href="file.xsl"?>
I read the stylesheet for XML not rendering in IE9
My XSL is consistent with this post.
Is there any workaround?
source
share