Hey guys!
I am processing an xsl file to HTML output. Within this file I hava a call to a servlet through an image tag (takes parameters, produces a graph and outputs it to a jpeg image).
The problem is with the parameter delimiters.
<xsl:element name="input">
<xsl:attribute name="src">
<xsl:text>
TITLECHART=Costs analysis&
LEGEND=TRUE&
SERIE_1=Product A&
SERIE_2=Product B& ............
</xsl:text>
</xsl:attribute>
</xsl:element>
Obviously XSL doesnt like &, so I converted these all to &#38;
The problem now is that the outputted HTML now coverts the &#38; to &amp;, but I need just the single character "&".
Does anyone know a stronger xsl fuction than <xsl:text> to force the output direct into the HTML?
Cheers!
Relisys
I am processing an xsl file to HTML output. Within this file I hava a call to a servlet through an image tag (takes parameters, produces a graph and outputs it to a jpeg image).
The problem is with the parameter delimiters.
<xsl:element name="input">
<xsl:attribute name="src">
<xsl:text>
TITLECHART=Costs analysis&
LEGEND=TRUE&
SERIE_1=Product A&
SERIE_2=Product B& ............
</xsl:text>
</xsl:attribute>
</xsl:element>
Obviously XSL doesnt like &, so I converted these all to &#38;
The problem now is that the outputted HTML now coverts the &#38; to &amp;, but I need just the single character "&".
Does anyone know a stronger xsl fuction than <xsl:text> to force the output direct into the HTML?
Cheers!
Relisys