TheCandyman
Technical User
I have a list of values which i would like to sort better. They come out sorted this way using SQL on a MS Access DB when i sort by this field.
I would like them to be:
Is this even possible with classic ASP? Can I toss these into an array and get a better listing this way?
Code:
T1
T10
T11
T13
T2
T21
T22
T3
T4
T5
I would like them to be:
Code:
T1
T2
T3
T4
T5
T10
T11
T13
T21
T22
Is this even possible with classic ASP? Can I toss these into an array and get a better listing this way?