do you mean you want to display the letters A - Z and have them as links (or something like that) so that when the user clicks on a letter, they see all records starting with that particular letter? if so you could do something like this
Code:
for a = 65 To 90
Response.write("<a href='somepage'>" & chr(a) & "</a>nbsp;nbsp")
next
nbsp; should be with an & sign at the beginning, but it wouldn't display correctly in this post...so I took out the & sign so you would see that it needs to be there to have spaces between the characters.
It will look like this on the page
mansiononmain.com/listings.asp