Hi,
my xml file has the example tag with
<tag>value&value</tag>
there is an error when start the xsl file...
I use also & and the header
<?xml version="1.0" encoding="iso-8859-1"?>
but not ok
Thanks!
Hi,
my xml file has the example tag with
<tag>value&value</tag>
there is an error when start the xsl file...
I use also & and the header
<?xml version="1.0" encoding="iso-8859-1"?>
but not ok
Thanks!
You need to escape the &
to &
in XML and XSLT:
<tag>value&value</tag>
What is the error? And do you mean &
, or &
? The semicolon is important.