tags:

views:

20

answers:

2

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 &amp and the header

<?xml version="1.0" encoding="iso-8859-1"?>

but not ok

Thanks!

A: 

You need to escape the & to &amp; in XML and XSLT:

<tag>value&amp;value</tag>
Oded
A: 

What is the error? And do you mean &amp, or &amp;? The semicolon is important.

Matt Gibson