click2sale
click2sale

Reputation: 1

classic asp :error '800a0bcd' load page

I have a problem loading the page I have a similar error message actually a lot here on the site the same time each line is a different problem message is:

Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record: line 60 attaches to the line.

line 60:

SelectedCategoryID = RSCategories("CategoryID")

Upvotes: 0

Views: 119

Answers (1)

Ali Sheikhpour
Ali Sheikhpour

Reputation: 11055

Before using recordset data, always perform a check if recordset is not eof e.g.

if not RSCategories.eof then
 SelectedCategoryID = RSCategories("CategoryID")
end if

Upvotes: 2

Related Questions