View Full Version : Error 800a0cc1
There is an error 800a0cc1 in my asp page. What does it mean??
And also I want to know..is there any constraint for the "response.redirect"???? Does it support any file type, say for example html, pdf, excel etc??? And is it related with this error 800a0cc1???:confused:
Stealth
06-19-03, 03:13 AM
i believe ...
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
Meaning that you are trying to access a table which doesnt exist. Possibly due to a spelling mistake in your coding.
With response.redirect you can link to any file but chances are the file will try to be downloaded
But all the spellings are correct....:( :confused:
Gurrutello
06-20-03, 08:50 PM
hello
tray adding
if yourrecordset.eof then
response.write"no items to show"
else
' the rest of your conection script
'......................
'......................
'......................
'......................
'......................
'......................
end if
eof means that the recordset does not exist then shows the response.write
if the recordset exist shows the result
saludos
vBulletin® v3.6.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.