I am getting this error when I press my link for update:
Error Type:
ADODB.Field (0x800A0BCD)
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
I know it is because the table is empty, I am trying to put the code below so when the user tries to select the update link it takes him to an custom error page that display that there is no data to update.
My code:
<%
If Rs.BOF or EOF then
response.redirect "entrar_resume.asp?error=3"
End If
%>
Other thing it might work is that the link does not displays if the record on the table is empty, but I don't know how to do this one.