D
daz_oldham
If I have the following XML:
<xml>
<levelone>
<leveltwo attribute="value">
<levelthree attribute2="value2">
Some Value
</levelthree>
</leveltwo>
</levelone>
</xml>
And the following XSL:
<xsl:template match="ns1:levelthree">
.....
</xsl:template>
How would I refer to the the value of '@attribute' from leveltwo?
I have tried a couple of different ways, but without a lot of luck!
Many thanks
Darren
<xml>
<levelone>
<leveltwo attribute="value">
<levelthree attribute2="value2">
Some Value
</levelthree>
</leveltwo>
</levelone>
</xml>
And the following XSL:
<xsl:template match="ns1:levelthree">
.....
</xsl:template>
How would I refer to the the value of '@attribute' from leveltwo?
I have tried a couple of different ways, but without a lot of luck!
Many thanks
Darren