Hi,
I had a create account form in which user will have to fill up in order for them to have access in the system. Now I have this password field, and I also created a fld_confirm_password field. I placed the following code on the BeforeInsert Event:
if({Password} != {fld_confirm_password})
{
sc_error_message({lang_error_password_equal});
sc_error_exit();
}
It displays an error message whenever the 2 password fields aren’t the same, but the problem is that the data is still inserted on the table even if the password fields aren’t the same.
Thanks
ishey