XSLT "Space" Formatting

microkarl

Well-known member
Joined
Apr 22, 2004
Messages
82
Location
Morristown, NJ
All,
I have the following code:
Code:
<td><xsl:value-of select="UDF/Name/NameFirst" /><xsl:value-of select="UDF/Name/NameLast" /></td>

The above code will show first name and last name like this: "JoeSmith", but I want to put a space between so it will displays "Joe Smith", how am I going to do it? consider "&nbsp;" does not work on XSLT.

Thanks,
Carl
 
Back
Top