I'm creating a registration form, and need to validate that a "Retype password" == "Original password" validator. It's as simple as "TXT_password1 == TXT_passowd2"
Any advice? Right now I've got a global "validate form" function and I just do the logic in there, but I'd like that whole routine to be implemented by validator objects. M@

