<%
dim numbering
numbering = 0
do while not RS.eof
''''''''write the number and you DB value
response.write(numbering), response.write(RS("FieldName"))
''''''''increment the variable numnering by 1 and then loop it back to the beginning
numbering = numbering + 1
loop
%>
not sure if the loop will work but im sure you get the drift