Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

Donald DUCK : YOU ARE FIRED!!!
Posted

Try this

 

<td><xsl:value-of select="UDF/Name/NameFirst" /><xsl:text> </xsl:text><xsl:value-of select="UDF/Name/NameLast" /></td>

Anybody looking for a graduate programmer (Midlands, England)?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...