Aparte existe un error mas grave el valor del atributo EOF es un boleano (Verdadero o Falso) y no un string:
Cita:
Iniciado por valderramalex
if miRS.eof ="" then
dim Result = false
else
Result = True
end if
Esto deberia estar asi:
Código ASP:
Ver originalif miRS.eof then
dim Result = false
else
Result = True
end if