Ciao ti faccio vedere un pò di codice!

Ti faccio vedere il codice della seconda pagina che dovrebbe estrarre l'elenco dei giocatori che appartengono alla stessa categoria:

----------------------------------------------------------------------------------------
INIZIO CODICE
----------------------------------------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>


<%
Dim codice_categoria_v
codice_categoria_v = request.querystring("CODICE_CATEGORIA")

Dim rs_AnagGiocatore

sql = "SELECT * FROM TabAnagGiocatore WHERE CODICE_CATEGORIA = '"& codice_categoria_v &"' ORDER BY COGNOME"

Set rs_AnagGiocatore = Server.CreateObject("ADODB.Recordset")
rs_AnagGiocatore.Open sql, cn, 3,3
%>

<html>
<head></head>
<body>
<%
While Not rs_AnagGiocatore.eof
Response.write ""&rs_AnagGiocatore("COGNOME")&" - "&rs_AnagGiocatore("NOME")&" - "&rs_AnagGiocatore("CODICE_CATEGORIA")&" -
"
rs_AnagGiocatore.MoveNext
Wend
%>

</body>
</html>

<%
rs_AnagGiocatore.Close
Set rs_AnagGiocatore = Nothing

cn.Close
Set cn = Nothing
%>
----------------------------------------------------------------------------------------
FINE CODICE
----------------------------------------------------------------------------------------

in questa pagina non visualizzo nessun record ma non da errore!