quindi così:

codice:
for i=0 to ubound(array)
if array(i) <> VALORE then
   response.write "OK"
   exit for
end if
next
sono certo che anche se VALORE non è il primo valore ad essere cilcato non eseguirò mai response.write"OK"?