T
Tim Barker
I have two forms. The first one (Enroll.asp) collects data from an end user.
The second one (Enroll2.asp) inserts the entered data into a SQL database.
The syntax that I'm using with the DRW is:
INSERT INTO TblEnroll(AccountID) VALUES('::AccountNR::')
AccountNR is the form textbox name so I want to write the value of that
textbox into the field name AccountID in the database. However, when I try an
proceed to the next step of the DRW, I get the error message "Errors
contained in Custom Query". If I replace the '::AccountNR::' with a text
string ('test123' as example) then everything works fine so I think the
syntax for the variable is wrong. Help.
The second one (Enroll2.asp) inserts the entered data into a SQL database.
The syntax that I'm using with the DRW is:
INSERT INTO TblEnroll(AccountID) VALUES('::AccountNR::')
AccountNR is the form textbox name so I want to write the value of that
textbox into the field name AccountID in the database. However, when I try an
proceed to the next step of the DRW, I get the error message "Errors
contained in Custom Query". If I replace the '::AccountNR::' with a text
string ('test123' as example) then everything works fine so I think the
syntax for the variable is wrong. Help.