This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

XT Output problem


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]