codice:
<% 
sSQL="SELECT * FROM Voci WHERE Etichetta= 'Comune' order by ID ASC;" 
set rs=server.createobject("adodb.recordset")
RS.Open sSQL, objConn
Do while not RS.Eof
%>
<table><tr><td><%=rs("etichetta")%></td><td><%=rs("titolo")%>...etc...
<%
rs.movenext
loop
set rs=nothing
rs.close
set conn=Nothing
conn.close 
%>