%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim RecStaff
Dim RecStaff_numRows
Set RecStaff = Server.CreateObject("ADODB.Recordset")
RecStaff.ActiveConnection = MM_connects_STRING
RecStaff.Source = "SELECT idpersona, titolobreve, Cognome, Nome FROM personale ORDER BY Cognome ASC"
RecStaff.CursorType = 0
RecStaff.CursorLocation = 2
RecStaff.LockType = 1
RecStaff.Open()
RecStaff_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
RecStaff_numRows = RecStaff_numRows + Repeat1__numRows
%>
inarco
<%
RecStaff.Close()
Set RecStaff = Nothing
%>