ADODB.Field error '800a0bcd'

Dostaję błąd w moim pliku .asp i nie wiem, jak to rozwiązać (nie znam ASP, to stary projekt mojego klienta, inny deweloper to zrobił). Błąd, który otrzymuję, jest następujący:

    ADODB.Field error '800a0bcd'

    Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

    /br/grava_cadastro.asp, line 105

I linie:

 100 %>
 101   <!--#include file="abrir_arquivo.asp"-->  
 102 <%
 103 xip= Request.ServerVariables("REMOTE_ADDR")
 104 RS.Open "SELECT * from  visitas where vi_data = date() and vi_ip='" &  xip & "'",cn,3,3
 105 xlink=rs("vi_link")
 106 rs.close

Blokuje mój formularz rejestracji. Ktoś wie, jak to rozwiązać? Z góry dziękuję!

questionAnswers(1)

yourAnswerToTheQuestion