Subject: RE: integer comparision
From: "Gabriel Osorio" <gosorio@xxxxxxxxxxx>
Date: Tue, 17 Jan 2006 08:39:06 -0500
|
</font><br></br>
Is:
<br/><br/>
-----Original Message-----
From: T Uma Shankari [mailto:umashankari@xxxxxxxxxxxxxxxxxxxx]
Sent: Tuesday, January 17, 2006 6:17 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: integer comparision
Greetings!
I have 2 integer values stored in different variables. By comparing both
the values, i am trying to display another variable value in different
color. But its showing all the variables in blue color. Here is my
xsl file.
<xsl:template name="replaceoptionsupclose">
<xsl:param name="stringfinal"/> // final string
<xsl:param name="optcorrectno"/> // integer value 1
<xsl:param name="optposition"/> // integer value 2
<xsl:if test="$optcorrectno=$optposition">
<font color="blue">
<xsl:value-of select="$stringfinal" /> // display final
string
</font><br></br>
</xsl:if>
<xsl:if test="not($optcorrectno=$optposition)">
<font color="black">
<xsl:value-of select="$stringfinal" /> // display final
string
</font><br></br>
</xsl:if>
</xsl:template>
please correct me where i am doing wrong
thanks in advance!
uma
|