hi i have a code as follows
Code:
<xsl:for-each select="elem1">
<xsl:variable name="level1" value="position()"/>
<xsl:for-each select="elem2">
<xsl:variable name="level2" value="position()"/>
</xsl:for-each>
</xsl:for-each>
i would like the variable level2 to have the level1 value appended
for example if level1 = 1, 2, 3 ...
then level2 = 11, 21, 31, ..
Thanks for the help