Microsoft JET Database Engine error '80040e10'
Microsoft JET Database Engine error '80040e10'No value given for one or more required parameters.
/materiel.asp, line 49
hvad går galt, nogle ideer?
<%
Dim rs_timeforbrug__MMColParam
rs_timeforbrug__MMColParam = "null"
If (Request.QueryString("job_id") <> "") Then
rs_timeforbrug__MMColParam = Request.QueryString("job_id")
End If
%>
<%
Dim rs_timeforbrug__MMuser
rs_timeforbrug__MMuser = "null"
If (Request.Cookies("login") <> "") Then
rs_timeforbrug__MMuser = Request.Cookies("login")
End If
%>
<%
Dim rs_timeforbrug
Dim rs_timeforbrug_numRows
Set rs_timeforbrug = Server.CreateObject("ADODB.Recordset")
rs_timeforbrug.ActiveConnection = MM_sogaard_STRING
rs_timeforbrug.Source = "SELECT * FROM hent_timer WHERE job_id = " + Replace(rs_timeforbrug__MMColParam, "'", "''") + " AND brugernavn = " + Replace(rs_timeforbrug__MMuser, "'", "''") + ""
rs_timeforbrug.CursorType = 0
rs_timeforbrug.CursorLocation = 2
rs_timeforbrug.LockType = 1
rs_timeforbrug.Open()
rs_timeforbrug_numRows = 0
%>
Min database ser ok, jeg kan ikke udskrive SQL?
response.Write(rs_timeforbrug)
Så siger den:
Response object error 'ASP 0185 : 8002000e'
Missing Default Property
/materiel.asp, line 0
A default property was not found for the object.
