Internet Explorer vil ikke vise resultat af XML to HTML
På en enkelt PC har jeg problemer med Internet Explorer 6.0.2800 når den skal lave en simpel transform af en XML side til HTML ved hjælp af et XSL dokument. Selv det simpleste eksempel giver ingen resultat:Document.xml:
<?xml version="1.0" ?>
<?xml-stylesheet type='text/xsl' href='document.xsl'?>
<!--My first XML document -->
<BankAccount>
<Number>1234</Number>
<Name>Darshan Singh</Name>
<Type>Checking</Type>
<OpenDate>11/04/1974</OpenDate>
<Balance>25382.20</Balance>
</BankAccount>
document.xsl:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="UTF-8" version="4.0" indent="yes" />
<xsl:template match="/">
<HTML>
<BODY>
<TABLE BORDER="1" bgcolor="#EEEEEE">
<xsl:apply-templates select="BankAccount" />
</TABLE>
</BODY>
</HTML>
</xsl:template>
<xsl:template match="BankAccount">
<TR>
<xsl:apply-templates select="Number" />
<xsl:apply-templates select="Name" />
<xsl:apply-templates select="Type" />
<xsl:apply-templates select="OpenDate" />
<xsl:apply-templates select="Balance" />
</TR>
</xsl:template>
<xsl:template match="Number">
<TD STYLE="font-size:12pt font-family:serif">
<xsl:apply-templates />
</TD>
</xsl:template>
<xsl:template match="Name">
<TD STYLE="font-size:12pt font-family:serif">
<xsl:apply-templates />
</TD>
</xsl:template>
<xsl:template match="Type">
<TD STYLE="font-size:12pt font-family:serif">
<xsl:apply-templates />
</TD>
</xsl:template>
<xsl:template match="OpenDate">
<TD STYLE="font-size:12pt font-family:serif">
<xsl:apply-templates />
</TD>
</xsl:template>
<xsl:template match="Balance">
<TD STYLE="font-size:12pt font-family:serif">
<xsl:apply-templates />
</TD>
</xsl:template>
</xsl:stylesheet>
Resultatet er en blank html side i IE.
Er der nogen der har en idé om hvad der er galt?
Ebberup