OK, so what's the correct syntax? I have this:
SQLQuery="select * from nl_staff where cnumber = '" & request.form("txtrepnum"

& "'"
if SQLQuery.eof then
SQLQuery = "INSERT INTO nl_staff (cnumber,sname,sfname,webpass) VALUES ('" & request.form("txtrepnum"

& "','" & request.form("txtlast"

& "','" &
request.form("txtfirst"

& "'," & pv & "

"
response.write(SQLQuery)
else
SQLQuery = "UPDATE nl_staff SET sname = '" & request.form("txtlast"

& "', sfname = '" & request.form("txtfirst"

& "' for cnumber = '" & request.form("txtrepnum"

& "'"
response.write(SQLQuery)
end if
adoCon.Execute(SQLQuery)
I've never had trouble with syntax as I do with this .. man, is it picky.
Anyway, let me know what I'm doing wrong
Thanks