Ciao a tutti; in una tabella access ho un campo previsto come Si/No.

Adesso dovrei visualizzare i dati di un utente e segnalare se questo utente è stato attivato o meno ed ho scritto così:
codice:
IF not RS.EOF THEN

StatoUtente = rs("Campo_SI_NO")

if StatoUtente = false then
StatoUtente = Attivato
else
StatoUtente = Disattivato
end if

response.write StatoUtente

end if
Ma non funziona nel senso che non restituisce nulla... dove sbaglio? :master: