Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xsl output error

Status
Not open for further replies.

anyideas

Programmer
May 2, 2002
127
GB
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:eek:utput method=&quot;html&quot;/>

If I delete the line it outputs:

&quot;a <br> b <br> c&quot;

Whereas I want it to output:

&quot;
a
b
c
&quot;

All help and sugguestions really appreciated.

Thanks

Mark

<xsl:stylesheet xmlns:xsl=&quot; language=&quot;VBScript&quot;>

<xsl:eek:utput method=&quot;html&quot;/>

<xsl:template match=&quot;/&quot;><xsl:apply-templates select=&quot;*&quot;/></xsl:template>

<xsl:template match=&quot;Event&quot;>
<TABLE width=&quot;100%&quot;>
<tr>
<td bgcolor=&quot;white&quot;>
<xsl:value-of select=&quot;Notes&quot;/>
</td>
</tr>
</TABLE>
</xsl:template>
</xsl:stylesheet>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top