codice:
strSQL = "SELECT topolino, pluto FROM Contratto WHERE ID = '" & topo & "' OR ID = '" & cane & "'"
set rs = conn.execute(strSQL)

if not rs.eof then
do until rs.eof
response.write rs("topolino") & " " & rs("pluto") & "
"
rs.moveNext
loop
end if

rs.close
set rs = nothing