Fejlkode!!!
nogen der kan fortælle mig hvad det her betyder ???:Microsoft OLE DB Provider for ODBC Drivers fejl \'80040e10\'
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
/skrive/ringz/album.asp, linje 23
/Mascot
min kildekode:
<%
dim mode, albumid, ringetoneid, land
strDSN = \"DRIVER={Microsoft Access Driver (*.mdb)};DBQ=\"&Server.MapPath(\"ringz.mdb\")
Set myConn = Server.CreateObject(\"ADODB.Connection\")
myConn.Open strDSN
Mode = Request(\"mode\")
albumid = Request(\"albumid\")
ringetoneid = Request(\"ringetoneid\")
rland = Request(\"land\")
%>
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<%
if mode = \"vis\" then
strSQL = \"SELECT * From album Where land = \" & rland & \" ORDER by id desc\"
Set rs = myConn.Execute(strSQL)
do while not rs.eof
%>
<a href=\"melodi.asp?mode=vis&albumid=<%= rs(\"id\") %>\"><%= rs(\"albumnavn\") %></a><br>
<%
rs.movenext
loop
end if
%>
</body>
</html>