|
When using a browser's XSLT processor, it's best to have the stylesheet convert the result to some sort of HTML. The stylesheet worked in IE when I added this template rule to it:
<xsl:template match="/">
<html><body>
<xsl:apply-templates/> </body></html>
</xsl:template>
|