Subject:xslt child selections Author:Bob Foster Date:15 Dec 2006 04:58 PM
Hello all,
Is there a away in xslt to apply template rules to all children of a given node? I have xml docs with a structure of
<row>
<field1>
<field2>
<field3>
...etc
</row>
The <row> tag is common to each doc but the child nodes may have different names. I'd like to have one xslt stylesheet handle all of them if possible. How would I select or loop through every child node of the <row> tag? Thanks in advance! :)