Chad,
why not
<xsl:value-of select="FIRSTNAME"/><xsl:text> </xsl:text><xsl:value-of
select="LASTNAME"/>
?
Tom
Chad Phillips wrote:
> 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">&nbsp;</xsl:text>
>
>
>
> If I use   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
>