Hi,
I have the following problem:
Here is the fragment of the script:
<xsl:template match="some-template">
<xsl:variable name="xslScript ">...</xsl:variable>
<xsl:variable name="xmlFile"> ...</xsl:variable>
<xsl:variable name="startMode ">...</xsl:variable>
... Here I need to call stylesheet $xslScript for $xmlFile file in mode $startMode to retrive some node set...
</xsl:template>
How can it be implemented using the Microsoft XSL transformer?
I have the following problem:
Here is the fragment of the script:
<xsl:template match="some-template">
<xsl:variable name="xslScript ">...</xsl:variable>
<xsl:variable name="xmlFile"> ...</xsl:variable>
<xsl:variable name="startMode ">...</xsl:variable>
... Here I need to call stylesheet $xslScript for $xmlFile file in mode $startMode to retrive some node set...
</xsl:template>
How can it be implemented using the Microsoft XSL transformer?
Comment