I have a question about variables in XSL. I am not so clear about the variables concept.
I am creating a variables in xsl file as:
<xsl:variable name="vars"></xsl:variable>
Then in a for each loop, in every iteration i want to add one node to existing variables such as
<xsl:for-each select="...">
<vars><var>A</var></vars>
</xsl:for-each>
Should I go with variables in order to achieve this? If yes, how can I add new nodes to existing variable..
I can only operate in XSL file, no permission to access or modify xml, xsd.
Thank You