I heard of importing your xml doc into a dataset, then sort the dataset and re-populate your xml, but I'm not sure how to code this..
I'd like to sort it by the 'Name' node.
Here is my XML file:
thanks
I'd like to sort it by the 'Name' node.
Here is my XML file:
Code:
<?xml version="1.0"?>
<IndividualListing>
<Individual>
<Name>Aaron, Scott</Name>
<Pager>3122220365@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Boston, Jeff</Name>
<Pager>6152257514@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Adams, Ryan</Name>
<Pager>2129410781@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Thomas, Naveed</Name>
<Pager>6159416077@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Baker, Srinivas</Name>
<Pager>3122010073@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Wilson, Don</Name>
<Pager>8472222016@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Naveed Reddy</Name>
<Pager>3122225858@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Sanders, William</Name>
<Pager>3122224506@archwireless.net</Pager>
</Individual>
<Individual>
<Name>Anderson, Karl R.</Name>
<Pager>3122051023@archwireless.net</Pager>
</Individual>
</IndividualListing>
thanks