Is there a XSL/XSLT function that enables me to format a date field (I get the date field fro mADO-XML stream in the format :yyyy-mm-dd, and I want to display it as : dd/mm/yy for example). How can I sort elemnts according to a date property (I saw that xsl:sort works in number/text modes only)
Brian Nice
Ranch Hand
Joined: Nov 02, 2000
Posts: 195
posted
0
Any date in the format yyyy-mm-dd should be able to be sorted by character. in ASCII, 9>8>7>6>5>4>3>2>1>0, so for instance: 1999-03-21 will be greater than 1999-02-28 Brian