una pregunta, si estas haciendo un bucle....
¿porque no comparas directamente con un if? el find te ayuda a encontrar un registro sin tener que recorrer todo el recordset
algo así quedaría:
Código asp:
Ver originalWhile Not RsReservas.EOF
if RSreservas("FechaIn")= FechaIn AND RSreservas("FechaOut")=FechaOut then
...
...
else
...
..
end if
loop
claro, esto en el supuesto que haya entendido tu pregunta bien...