Come selezioni i dati? Con un query SQL?
Tipo:
codice:
sql = "SELECT * FROM tabella1 ORDER BY campo1 ASC" ' oppure DESC
set rs = conn.execute(sql)
if not rs.eof then
  do until rs.eof
    ' qui stampi i tuoi dati...
  rs.moveNext
  loop
end if
rs.close
set rs = nothing