Ciao

Cosa c'è di sbagliato in questo script?

-----------------------------------
PAGINA CHE RICEVE scheda-sing.asp
-----------------------------------
<%
dim conn, Rs, sezione
sezione= request.QueryString

Set conn = Server.CreateObject("ADODB.Connection")
Set Rs = Server.CreateObject("ADODB.Recordset")

conn.Open "sciclub"
Rs.open "SELECT * FROM atleti where ID=" & sezione & "", conn, 3, 3
%>

....codice HTML.....

<%=(Rs.Fields.Item("nome").Value)%>

------------------------------------
PAGINA CHE INVIA scheda.asp
------------------------------------
"><%=mostra("cognome")%>


-------------------------------------------
Questo è l'errore:

ADODB.Field (0x800A0BCD)
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.


...............
grazie in anticipo!