xslt variable problems
hi
My problem: Each element needs an id, they follow this pattern: "smenu1,smenu2,smenu3,..."
How can i do this with xsl?
hopefully this demonstates what I need:
<xsl:for-each select="li">
int i = 0;
<dt id =smenu+i >...</dt>
i++;
</xsl:for-each>
cheers
|