Hi,
Looking at this xml:
<root>
<nodeA />
<nodeB />
</root>
Is it then possible to set the value of nodeB when inside nodeA? For example:
<xsl:template match="nodeA">
<!-- Here do something like nodeB.Text = "hi" -->
</<xsl:template>
So that the output of matching nodeA could be (the thing to notice is the content of nodeB):
<root>
<nodeA />
<nodeB>hi</nodeB>
</root>
?
--
Werner