Questo è il code della listbox:
codice:
<% 
pagina = request.servervariables("path_info") 
ID_ABC = request.querystring("ID_ABC") 

if len(ID_ABC) > 0 and isnumeric(ID_ABC) then 
id = clng(ID_ABC) 
else 
id = 0 
end if 

set conn = server.createobject("adodb.connection") 
conn.open "DRIVER={Microsoft Access Driver (*.mdb)};" &_ 
"DBQ="& Server.MapPath("upload.mdb") 

sql = "select * from tabella1 order by nome_squadra" 

set rs = conn.execute(sql) 

if not rs.eof then 
%>

<option value="<%=pagina%>?id_ABC=0">Selezionare Nome squadra</option> 

<% do until rs.eof %> 

<option value="<%=pagina%>?id_ABC<%=rs("ID_ABC)%>"<% if rs("ID_ABC") = id_ABC then %> selected<% end if %>><%=rs("nome_squadra")%></option> 

<% 
rs.movenext 
loop 
end if 
%> 
</select></font><p style="margin-top: 0; margin-bottom: 0" align="left"> 
<font size="2" face="Verdana"> 
<% 
rs.close 
set rs = nothing 

if ID_ABC > 0 then 

sql = "select nome from tabella2 where ID_ABC = " & ID_ABC & " group by nome"

set rs = conn.execute(sql) 

do while not rs.eof

%>

<%=rs("nome")%> 

<%
rs.movenext
loop

rs.close 
set rs = nothing 

end if
conn.close 
set conn = nothing 
%>
ed un volta selezionato il nome della squadra mi restituisce tutti i giocatori di quella determinata squadra... non riesco ad avere il dettaglio di ciascun giocatore...