Hi this is my first asp project, heres all my code, Its giving me this error:
here is the related code:
if you need more of the code let me know
thanks,
Ins
Code:
"Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.
/asp/confirm.asp, line 19
"
here is the related code:
Code:
<%@ Language = "VBScript"%>
<%
'local variables
dim conn
dim rs
dim strID
dim strconn
'Create the Connection object
set conn = server.createobject("adodb.connection")
conn.open "GG"
'Create the recordset object
set rs = server.createobject("adodb.recordset")
'open table
rs.open "Main", conn,2,2
if you need more of the code let me know
thanks,
Ins