Can someone tell me what is wrong with my AS here? I’m trying to make a simple form which error checks and then outputs to ASP but it won’t do anything when I click ‘submit’.
var email_lv = new LoadVars();
function validate() {
var p = this._parent;
var _lv = p.email_lv;
if (p.name_txt.text == "" || p.subj_txt.text == "" || p.email_txt.text == "" || p.mess_txt.text == "") {
// in any of the fields are missing
// show error message and return false
error_txt.text = "***All fields are required";
return false;
}
_lv.name = p.name_txt.text;
_lv.from = p.email_txt.text;
_lv.subject = p.subj_txt.text;
_lv.message = p.mess_txt.text;
return true;
}
function sendForm() {
if (validate()) {
this._parent.email_lv.send('asp_mailer.asp');
}
}
submit_btn.onRelease = sendForm;