Here is what I am trying:
sSQL = "INSERT into users (firstName, lastName, email, password, zip, country, company, industry, revenue, timestamp)
VALUES('" & fname & "','" & lName & "','" & email & "','" & password & "','" & zip & "','" & country & "','" & company & "','" & industry & "','" & revenue & "','" & CURRENT_TIMESTAMP & "')"
Error Message:
Microsoft VBScript runtime error '800a01f4' Variable is undefined: 'CURRENT_TIMESTAMP' /register.asp, line 24
I tried DEFAULT as the timestamp, didn't work though.