|
Hi there, I got the sql to work on the last problem but now come up with the following when I try to update.
Microsoft JET Database Engineerror '80040e07'
Data type mismatch in criteria expression. /html/user-info-standard.asp, line 150
CODE
' execute the update
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute <---------------------------
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
Any ideas on how to trouble shoot?
|