XT Output problem

Subject: XT Output problem
From: Sydney <moisi_fr@xxxxxxxx>
Date: Fri, 12 May 2000 09:30:41 +0200 (CEST)
Hi

This XSL code
<xsl:variable name="currentscreen">
s<xsl:value-of select="$firstPart"/>
<xsl:choose>
<xsl:when test="$current &lt; 10">
0<xsl:value-of select="$current"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$current"/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$max &lt; 10">
0<xsl:value-of select="$max"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$max"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:value-of select="$currentscreen"/><br/>
produce 
current: 
s0
01
02<br>

Is there a way to force this output without the line
return.
current : s00102<br>

Thanks
Sydney

___________________________________________________________
Do You Yahoo!?
Achetez, vendez! À votre prix! Sur http://encheres.yahoo.fr


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread