PDA

View Full Version : Error 800a0cc1


bonnie
06-19-03, 12:25 AM
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

bonnie
06-19-03, 04:44 AM
But all the spellings are correct....:( :confused:

Shane
06-19-03, 10:27 AM
Can you post some code?

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