help concat 2 variables
Posted: Wed Nov 11, 2009 6:59 pm
Hi folks,
I need your help in the following scenario :
<xsl:variable name="var1" select="'SOME_DATA1'" />
<xsl:if test="'some_condition'">
<xsl:variable name="var2" >
<xsl:value-of select="'SOME_DATA2'"/>
</xsl:variable>
</xsl:if>
<data> <!-- I need here to contact var1 with var2, please help --> </data>
Thanks.
I need your help in the following scenario :
<xsl:variable name="var1" select="'SOME_DATA1'" />
<xsl:if test="'some_condition'">
<xsl:variable name="var2" >
<xsl:value-of select="'SOME_DATA2'"/>
</xsl:variable>
</xsl:if>
<data> <!-- I need here to contact var1 with var2, please help --> </data>
Thanks.