Microsoft JET Database Engine error '80040e10'
Hi there, I continue to get the following error when trying to update a form.
Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/html/advertiser-basic-details.asp, line 144
Some of my code below.
SELECT tblSuppliers.idSupplier, tblLocation.Location, tblCountry.Country
FROM tblCountry INNER JOIN (tblLocation INNER JOIN tblSuppliers ON tblLocation.idLocation = tblSuppliers.iLocation) ON tblCountry.idCountry = tblSuppliers.iCountry
' execute the update
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute <------------ Line 144
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
|