blondebier
Programmer
Any ideas what the following error means?
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
/addprod.asp, line 54
This is line 54 of addprod.asp:
set rscatlist=db.execute("select name,productid from products where catcode=" & rsprod("catcode"
& " order by name"
I include a db connection file db.asp:
<!-- #include file="adovbs.inc" -->
<%
dim db
dim strConn
strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\inetpub\ & _
"Persist Security Info=False"
Set db = Server.CreateObject("ADODB.Connection"
db.open strConn
%>
Any help would be greatly appreciated.
Error Type:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
/addprod.asp, line 54
This is line 54 of addprod.asp:
set rscatlist=db.execute("select name,productid from products where catcode=" & rsprod("catcode"
I include a db connection file db.asp:
<!-- #include file="adovbs.inc" -->
<%
dim db
dim strConn
strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\inetpub\ & _
"Persist Security Info=False"
Set db = Server.CreateObject("ADODB.Connection"
db.open strConn
%>
Any help would be greatly appreciated.