hi all.
I'm trying to display the page below using xsl. The attribute Notes value is: a <br> b <br> c
however I can't get it to work with the following line in the file:
<xsl
utput method="html"/>
If I delete the line it outputs:
"a <br> b <br> c"
Whereas I want it to output:
"
a
b
c
"
All help and sugguestions really appreciated.
Thanks
Mark
<xsl:stylesheet xmlns:xsl=" language="VBScript">
<xsl
utput method="html"/>
<xsl:template match="/"><xsl:apply-templates select="*"/></xsl:template>
<xsl:template match="Event">
<TABLE width="100%">
<tr>
<td bgcolor="white">
<xsl:value-of select="Notes"/>
</td>
</tr>
</TABLE>
</xsl:template>
</xsl:stylesheet>
I'm trying to display the page below using xsl. The attribute Notes value is: a <br> b <br> c
however I can't get it to work with the following line in the file:
<xsl
If I delete the line it outputs:
"a <br> b <br> c"
Whereas I want it to output:
"
a
b
c
"
All help and sugguestions really appreciated.
Thanks
Mark
<xsl:stylesheet xmlns:xsl=" language="VBScript">
<xsl
<xsl:template match="/"><xsl:apply-templates select="*"/></xsl:template>
<xsl:template match="Event">
<TABLE width="100%">
<tr>
<td bgcolor="white">
<xsl:value-of select="Notes"/>
</td>
</tr>
</TABLE>
</xsl:template>
</xsl:stylesheet>