Trying to edit a form mail script thingie in ASP, which I know next to nothing about. I'd do this in PHP:
$validationOK=false;
if ($Name && $EmailFrom && $Address1 && $City && $StateProvince && $ZipMailcode && $Country && $Telephone && $Fax && $GenApps) { $validationOK=true; }
is the below in ASP going to work, or at least in the right direction?
Dim validationOK
validationOK=false
If Name AND EmailFrom AND Address1 AND City AND StateProvince AND ZipMailcode AND Country AND Telephone AND Fax AND GenApps Then validationOK=true
help?
EDIT: Problem solved for now, but I'd still like to know the answer to this.
$validationOK=false;
if ($Name && $EmailFrom && $Address1 && $City && $StateProvince && $ZipMailcode && $Country && $Telephone && $Fax && $GenApps) { $validationOK=true; }
is the below in ASP going to work, or at least in the right direction?
Dim validationOK
validationOK=false
If Name AND EmailFrom AND Address1 AND City AND StateProvince AND ZipMailcode AND Country AND Telephone AND Fax AND GenApps Then validationOK=true
help?
EDIT: Problem solved for now, but I'd still like to know the answer to this.