hvad betyder denne fejl
Vælg Produkt du ønsker at bestille:ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/shop/Default.asp, line 26
Siden der laver fejlen ser således ud::
<!-- #include file="db.inc" -->
<%
'if user returns to the homepage after shopping, clean up the session variables
If Request.QueryString ("end") = 1 Then
Session.Abandon
End If
%>
<html>
<head>
<title>Online Bestilling</title>
</head>
<body>
<table border="0" width="600" cellpadding="4">
<tr>
<td width="480">Vælg Produkt du ønsker at bestille:
<ul>
<%
'create recordset to show categories from database
Dim rs
Set rs = Server.CreateObject ("ADODB.Recordset")
rs.Open "categories", dbc, adOpenForwardOnly,adLockReadOnly,adCmdTable
While Not rs.EOF
%>
<li><a HREF="products.asp?id=<%= rs("categoryID") %>&cat=<%= rs("catdescription") %>"><%= rs("catdescription") %></a></font>
</li>
<%
rs.MoveNext
Wend
rs.Close
dbc.Close
Set rs = Nothing
Set dbc = Nothing
%>
</ul>
<p> </td>
</tr>
</table>
</body>
</html>
