| Home > Contact > Mail Formulier
 <% ' Input Variables (via ASP) '=========================== ' Action = What we are doing (i.e. form input or checking data and sending mail) '------------------------------------------------------------------------------- ' Action Description '---------------------- ' 0 First time form input ' 1 Check user input ' 2 Show user his data ' 3 Send mail CRLF = Chr(13) & Chr(10) NeededFields = Array(_ "Naam",_ "Adres",_ "Postcode",_ "Plaats",_ "Land",_ "E-mail") Action = Request.Form("Action") fullname = Request.Form("fullname") position = Request.Form("position") company = Request.Form("company") address = Request.Form("address") postcode = Request.Form("postcode") town = request.form("town") country = request.form("country") phone = Request.Form("phone") fax = Request.Form("fax") email = Request.Form("email") enterprise = Request.Form("enterprise") remarks = Request.Form("remarks") If (Action = 0) Then Action = 0 country = "Nederland" End If If Request.Form("DataIncorrect.x") <> "" Then Action = 0 End If If Request.Form("DataCorrect.x") <> "" Then Action = 3 End If%> | 
|