Hello,
I have a problem that I cannot solve:
The error I get is:
Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'E-mail = test@test.be'.
the sql statement I use is:
sqlMainData = "SELECT * FROM bestellingen WHERE E-mail = " & strEmail
strEmail is a variable that comes from the form:
<%
Dim strEmail
strEmail = Request.Form("email")
if strEmail = "" then
response.redirect("form.html")
end if
%>
thx