<%
While ((Repeat3__numRows <> 0) AND (NOT anni.EOF))
%>
<%
Dim mesi
Dim mesi_numRows
Set mesi = Server.CreateObject("ADODB.Recordset")
mesi.ActiveConnection = MM_conn_STRING
mesi.Source = "SELECT DISTINCT mese FROM news WHERE titoloING = 'NO' AND anno="& anni.fields("anno") & " ORDER BY mese DESC"
mesi.CursorType = 0
mesi.CursorLocation = 2
mesi.LockType = 1
mesi.Open()
mesi_numRows = 0
%>
<%
While ((Repeat1__numRows <> 0) AND (NOT mesi.EOF))
%>
<%
Dim r1
Dim r1_numRows
Set r1 = Server.CreateObject("ADODB.Recordset")
r1.ActiveConnection = MM_conn_STRING
r1.Source = "SELECT * FROM news WHERE titoloING = 'NO' AND anno="& anni.fields("anno") & " AND mese=" & (mesi.Fields.Item("mese").Value) & " ORDER BY ID DESC"
r1.CursorType = 0
r1.CursorLocation = 2
r1.LockType = 1
r1.Open()
r1_numRows = 0
%>
<%
While ((Repeat2__numRows <> 0) AND (NOT r1.EOF))
%>