I am having trouble getting HTML white space into my XML output. 
The only thing I have gotten to work is:
<xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
 
If I use &#160; it prints out �
 
Is there a better way?
 
Here is part of my XSL
 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text/html" encoding="ISO8859-1"/>
<xsl:value-of select="FIRSTNAME"/> <xsl:value-of select="LASTNAME"/>
 
I want to add a space between first and last name.
 
thanks
chad

Reply via email to