Ciao, mi spiegate perchè se eseguo questa query, poi quando voglio richiamare un campo del db mi restituisce errore?:

codice:
strID = request.querystring("id")

str_update = "UPDATE TabellaAccess SET "
str_update = str_update & " inoltrata = true "
str_update = str_update & " WHERE id = " & strID
Set RS = conn.execute(str_update)

strVar = RS("altro_campo_del_db")
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.

Sulla riga dei strVar. :master: