RichardHayes
Programmer
I have stored a number of field names in a recordset which I want to use to retrieve the data from a different recordset. An excerpt from the code is as follows:
Response.Write("<td>" & rsRenewals(rsFieldNames("FieldName"
) & "</td>"
Which returns the error of
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
I know that I have correctly named the fields in rsFieldNames because I copied them directly from the table design.
Any help would be much appreciated.
Response.Write("<td>" & rsRenewals(rsFieldNames("FieldName"
Which returns the error of
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
I know that I have correctly named the fields in rsFieldNames because I copied them directly from the table design.
Any help would be much appreciated.