class. I don't know how many records can be in the table, so I would have to generate the "id" parameter of the
tag automatically.
Answer:
Use a counter and as you walk through the recordset, increment it.
i = 0
Do while not RS.EOF
i = i+1
response.write "div text
RS.Movenext
Loop