I've created an ASP form in Ultra Dev and I have a good DSN-less connection to a remote Access DB, however, when I press submit on the form I get a line 91 error shown below:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'MM_editCmd.Update'
/infoform.asp, line 91
Code Snippet:
If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command"
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Update
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "" Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'MM_editCmd.Update'
/infoform.asp, line 91
Code Snippet:
If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command"
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Update
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "" Then
Response.Redirect(MM_editRedirectUrl)
End If
End If