Does anyone know why the following SQL statement returns the above error?
sSQL=”INSERT INTO Table_Name (field_name) VALUES (“”‘” & Request.Form(POSTval) & “‘””)”
POSTVal should contain a string from the first form textbox since this query is only called by a if statement to ensure that we’re at the right spot. Thanks!
P.S. Using a MS Access DB
I think I would try:
You might also verify that Request.Form(“POSTval”) has a value and is not NULL.