You are viewing this page out of context. To see it in the context it is intended please click here.
About This Page
Reply posted by Jake Howlett on Tue 19 Jun 2007 in response to Form Validator R3.0
Re: Comparing email Addresses
Hi Jill,The problem is more likely in this bit:
document._Registration.EmailAddress1
Try this instead:
document.forms["_Registration"].EmailAddress1.value==fld.value
Or even:
fld.form.EmailAddress1.value==fld.value
Jake