O
oooooo0000000
I have an XML file of varying nesting depth...
<catalouge>
<item id="1">
<name/>
<item id="23">
<name/>
<item id="55">
<name/>
</item>
</item>
<item id="7">
<name/>
</item>
</catalouge>
So, each item can contain many items.
I'm trying to get my XSLT to recursivly loop through each item to
print it out in block quotes eg
1 name
23 name
55 name
7 name
How can I get a <xsl:for-each> loop to go through the whole tree?
Thanks
Yours, in confusion
o0
<catalouge>
<item id="1">
<name/>
<item id="23">
<name/>
<item id="55">
<name/>
</item>
</item>
<item id="7">
<name/>
</item>
</catalouge>
So, each item can contain many items.
I'm trying to get my XSLT to recursivly loop through each item to
print it out in block quotes eg
1 name
23 name
55 name
7 name
How can I get a <xsl:for-each> loop to go through the whole tree?
Thanks
Yours, in confusion
o0