outside of asp i can run this query ok---
Select * from TMSCUST where ID = '5'
(in the sql table - sql server 2000 - ID is type int...)
but when i try to run it in my asp page, i get this error:
Syntax error converting the varchar value '5, ' to a column of data type int.
i think it might be a quotation mark issue?, but cant figure out anything that works......
asp statement:
strSQLu = "UPDATE TMSCUST SET billtofirstname = 'strFirstname', billtolastname = 'strLastname', source = 'strSource', billtostate = 'strState' " & _
"WHERE ID = '" & intID & "' "