microkarl Posted December 7, 2005 Posted December 7, 2005 All, I have the following 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 " " does not work on XSLT. Thanks, Carl Quote Donald DUCK : YOU ARE FIRED!!!
Cags Posted December 7, 2005 Posted December 7, 2005 Try this <td><xsl:value-of select="UDF/Name/NameFirst" /><xsl:text> </xsl:text><xsl:value-of select="UDF/Name/NameLast" /></td> Quote Anybody looking for a graduate programmer (Midlands, England)?
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.