I'm using an asp:XmlDataSource
to list an xml document. It looks like this:
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/App_Data/Xml/History.xml" />
And I'm using it in a asp:Listview
like this:
<asp:ListView runat="server" DataSourceID="XmlDataSource1" >
I was wondering if there was a way to reverse the order, because I would like the last row of the xml to be the first row in my list. How can I achieve this?