Form field validation - Login page

No easy way to check for A-Z. Would have to check for one invalid character at a time - so you would have to know all the invalid characters. Likely very tough unless you use some JavaScript. Checking for an @ and a . in the email is easy enough using the conditions on the actions. Create an action that displays a msg saying invalid email address. On the Conditions tab, require that ALL these conditions are satisfied.emailFieldVariable Does Not Contain @emailFieldVariable Does Not Contain .For the first name, you will likely need a separate msg. Display the msg if:firstNameVariable Equal To (and leave the last field blank ) (this means that it has to have something in it) and same for last name variablelastNameVariable Equal To (leave blank)For the Go To next page action it must have these so you want it to satisfy ALL of these:firstNameVariable Not Equal To (and leave the last field blank ) (this means that it has to have something in it) lastNameVariable Not Equal To (leave blank) emailFieldVariable Contains  @ emailFieldVariable Contains  .Edited By: Ben Pitman on 2008-8-21 16:49:4

Discussions have been disabled for this post