looping tree based on identical value of a child
how to write this in asp ?
--> for each same <id>-value, collect <name>-values
result:
1 = sunday
2 = monday + thuesday
<tree>
<record>
<name>monday</name>
<id>2</id>
</record>
<record>
<name>sunday</name>
<id>1</id>
</record>
<record>
<name>thuesday</name>
<id>2</id>
</record>
</tree>
|