[xsl] how red ampersand from the xml file

Subject: [xsl] how red ampersand from the xml file
From: henry human <henry_human@xxxxxxxx>
Date: Fri, 25 Mar 2005 18:20:30 +0100 (CET)
hello,
how could read ampersand 
from  this tag:<bbb>before&after</bbb>
i tried itto replace it bt i get error!


<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="14586.xsl"?>
<Job>
<Jobsdetails>

<worksPart1>

<bbb>before&after</bbb>
<worksNr>20362</worksNr>

</worksPart1>

-------
<?xml version='1.0'?> 
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";> 
<xsl:output method="html"/> 
<xsl:template match="/Job">
<html><head><META http-equiv="Content-Type"
content="text/html; charset=iso-8859-1"/>

</head><body><table>

<xsl:apply-templates select="Jobsdetails/worksPart1"/>
</table></body></html>

</xsl:template>


<xsl:template match="worksPart1" >
<tr> <td><xsl:value-of select="worksNr"/>&amp;</td>
   <td>

    <xsl:if test="contains(bbb,&#38;)">
    <xsl:value-of
select="substring-before(bbb,&#38;)"/>
    myampersand<xsl:value-of
select="substring-after(bbb,&#38;)"/>
    </xsl:if>
       </td>       
 </tr>
</xsl:template>
</xsl:stylesheet>

</Jobsdetails>
</Job>



	

	
		
___________________________________________________________ 
Gesendet von Yahoo! Mail - Jetzt mit 250MB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de

Current Thread