Order... is posible?2004-06-16 07:19:10Hellow i have the bellow xml and i want to print the name with:
<xsl:value-of select="name"/>
but i want to appears ordered by the ide node.
is this posible?
how?
thanks
<?xml version="1.0" encoding="UTF-8"?>
<root>
<person>
<name>adsf</name>
<ide>3</ide>
</person>
<person>
<name>adsf</name>
<ide>1</ide>
</person>
<person>
<name>adsf</name>
<ide></ide>
</person>
<person>
<name>adsf</name>
<ide>2</ide>
</person>
<person>
<name>adsf</name>
<ide>5</ide>
</person>
</root>
|
|
||||||||||||||||