I have this code on my register page for a displayed name:
If (Len(Request.Form("name")) < 3) Or (Len(Request.Form("name")) > 50) Then ProblemsWithRegister = 1
Since I'd like users to use a name/surname format, is there a way to add a check that not only checks the number of characters (now < 3 > 50), but also checks if it's one word only? Thanks for those willing to help.
I tried to add two separate fields, but didn't like the concat to add them together in the db name field. Also because users seemed to confuse what had to be input.