Click to See Complete Forum and Search --> : loop over all nodes


dallasweb
05-01-2003, 11:29 AM
Is there a simple way to loop over all xml nodes and display their name and values with XSL? Kinda like a XML dump to html.

tobysaville
05-05-2003, 09:17 PM
if you do:
<xsl:for-each select="//">
<!-- handle nodes here -->
</xsl:for-each>

you will loop through every tag in your XML file.

Have i understood your question correctly?

-tobes