Creating a space ( ) in XSL

AdodeGarled

New Member
Im trying to create automatic spacing in a XSL document in the following manner.\[code\]<td><xsl:value-of select="Name/First"/> <xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text><xsl:value-of select="Name/Last"/> </td>\[/code\]However, the rendered HTML is of the following form\[code\]<td>John&nbsp;Grisham</td>\[/code\]Any idea on how I could fix this?
 
Back
Top