ASP/ADO help

eddy05

Posts: 147   +0
I just thought maybe I can ask this question in techspot. I'm creating an Online Address Book for my community. If you know ASP/ADO, you'll know that when you list the recordset using

if NOT RecordSet.EOF then
response.writeln RecordSet("Field")
RecordSet.MoveNext

the records will be listed according to date. Any idea on how to make it list alphabetically instead?
 
Back