%@ language="vbscript" %> <% response.buffer = true dim sql, rec, fout, naam, voornaam, email,straat,boodschap,postcode,gemeente,onderwerp if not isempty (request.Form("controle")) then fout = "0" if trim(request.Form("voornaam")) = "" or isnumeric(request.Form("voornaam")) then voornaam = true fout = "1" end if if trim(request.Form("naam")) = "" or isnumeric(request.Form("naam")) then naam = true fout = "1" end if if trim(request.Form("gemeente")) = "" or isnumeric(request.Form("gemeente")) then gemeente = true fout = "1" end if if trim(request.Form("email")) = "" or instr(request.Form("email"), "@") = 0 or instr(request.form("email"), ".") = 0 then email = true fout = "1" end if if trim(request.Form("onderwerp")) = "" or isnumeric(request.Form("onderwerp")) then onderwerp = true fout = "1" end if end if %>