Subject: XSL and White Space help PLEASE
From: "Gutti, Sridhara" <sgutti@xxxxxxxx>
Date: Fri, 1 Jun 2001 21:06:50 -0500
|
Folks,
I'm trying to insert a white space using XSL, but I don't seem to get it
working, I'm using msxml3.0 and
I Tried the following..
<xsl:text> </xsl:text> and also
<xsl:text> </xsl:text>
Niether of those is working, can you guys help me please.. I just want to
insert a space in the following example...
thanks, sridhar.
<xsl:choose>
<xsl:when test="@AISLE">
<xsl:text> </xsl:text>
<font size="3" color="#000000">
<i><xsl:text> Aisle: </xsl:text></i><xsl:value-of
select="@AISLE"/>
</font>
</xsl:when>
</xsl:choose>
<xsl:choose>
<xsl:when test="@BAY_NUM">
<xsl:text> </xsl:text>
<font size="3" color="#000000">
<i><xsl:text> BayNum: </xsl:text></i><xsl:value-of
select="@BAY_NUM"/>
</font>
</xsl:when>
</xsl:choose>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|