-
Error please help me
ADODB.Fields error '800a0cc1'
ADO could not find the object in the collection corresponding to the name or ordinal reference requested by the application.
/THEREALSITE/Users/TMPe5x5bd00ul.asp, line 155
what does this mean??...im trying to parse a value from my database to
a hiddenfield
here is line 155 ??
<input type="hidden" name="SubSectionID" value="<%=(RSHolding.Fields.Item("SubSectionID").Value)%>">
i have checked that SubSectionID does exist in my recordset as well as in my SQL database?..
im stuck anyting else i can check??
everythign else works fine fine except i get this error???
-
Try just this. Of course I am assuming rsholding is you recordset.
RSHolding("SubSectionID")
-
Or just
RSHolding.Fields("SubSectionID")
I would double check the field names match cuz that is what that error normally is generated from... mis-spelled field names.