Hi
I'm stuck trying to work within these constraints, I'm using XSLT 1.0 {under .net}. I'd like to be able to do the following: i'm xsl:for-each'ing through a set of nodes of type
<node>
<data> unknown unstructured xml </data>
<owner></owner>
</node>
i'd like to be able to output
<node>
<data> unknown unstructured xml </data>
<!--RESULT of calling an XSL template with certain parameters -->
</node>
from my search so far i thought i could do something like in here:
<xsl:copy>
<xsl:apply-template name="findownerdetails">
<xsl:with-param name="data" select="something" />
</xsl:apply-template>
</xsl:copy>
but this is apparently not valid. any suggestions how to get this working or to acheive something similar? I'm afraid i cant just call apply-templates as the template i want will depend on some data i am building up as i for-each through a list of node elements.
Any advice appreciated