I'm new to ASP and I have a problem with one of my pages. I created a html page and posted the information to my asp form. the asp form is supposed to insert the information into an access database. the code I used is this-
MySQLcmd="select Password, FirstName, LastName, Secret_Question, Secret_Answer,email from dbs_table;"
Set rs=MySQLcon.Execute(MySQLcmd)
dim MySQLinsert
MySQLinsert="insert into dbs_table (FirstName,LastName, email, password, Secret_Question, Secret_Answer) values('firstname', 'LastName', 'Email', 'password2', 'secretq', 'secreta');"
The error I keep getting is this-
Error Type:
Microsoft JET Database Engine (0x80040E14)
Syntax error in INSERT INTO statement.
/workload/newuser.asp, line 20
it says that there is a syntax error into the insert into statement but I don't see anything. I copied it from the book and I've viewed some pages and it's all the same. I still don't see where the syntax is.
anyone knows what's wrong?
MySQLcmd="select Password, FirstName, LastName, Secret_Question, Secret_Answer,email from dbs_table;"
Set rs=MySQLcon.Execute(MySQLcmd)
dim MySQLinsert
MySQLinsert="insert into dbs_table (FirstName,LastName, email, password, Secret_Question, Secret_Answer) values('firstname', 'LastName', 'Email', 'password2', 'secretq', 'secreta');"
The error I keep getting is this-
Error Type:
Microsoft JET Database Engine (0x80040E14)
Syntax error in INSERT INTO statement.
/workload/newuser.asp, line 20
it says that there is a syntax error into the insert into statement but I don't see anything. I copied it from the book and I've viewed some pages and it's all the same. I still don't see where the syntax is.
anyone knows what's wrong?