ciao ho questo problema:

Codice PHP:
<%
Set rs Server.CreateObject("ADODB.Recordset")
sql="SELECT * FROM tabella where visualizza=true ORDER BY id DESC"
rs.open sqlobjConn33
do until rs.eof 


Response
.Write("&nomesito_1="&(rs("titolo"))&"&")%>


<%
rs.movenext 
loop 
rs
.close 
set rs
=nothing %> 
vorrei poter mettere al posto di "_1" un numero che si incrementa in automatico ad ogni passaggio quindi risulterà nomesito_1 nomesito_2 ecc.. qualcuno mi potrebbe aiutare?