NetTalk Central
Toggle navigation
Login
Register
×
Welcome,Guest
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
NetTalk Central
»
NetTalk Web Server
»
Web Server - Ask For Help
»
alpha-numeric password
« previous
next »
Print
Pages: [
1
]
Author
Topic: alpha-numeric password (Read 4830 times)
olu
Sr. Member
Posts: 352
alpha-numeric password
«
on:
November 14, 2012, 03:06:57 AM »
hi all , please need help on creating a alpha-numeric check on password field, to ensure when users create their passwords it contain numbers and characters
Logged
Robert Iliuta
Sr. Member
Posts: 472
Re: alpha-numeric password
«
Reply #1 on:
November 14, 2012, 05:55:49 AM »
Hallo Olu,
If you have StrigTheory there is a method "Random" that will do exactly what you need.
Regards,
Robert
Logged
charl99
Full Member
Posts: 185
Re: alpha-numeric password
«
Reply #2 on:
November 14, 2012, 06:46:25 AM »
Olu,
If you don't have and don't want to wait:
loop x# = 1 to len(clip(password))
if instring(password[x#],'ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890',1,1)
cycle
else
!Fail Code
end
Cheers
Charl
Logged
olu
Sr. Member
Posts: 352
Re: alpha-numeric password
«
Reply #3 on:
November 14, 2012, 08:13:42 AM »
Thanks Robert and Charl
as i do not have stringtheory i am going to try Charl's idea .
Logged
kevin plummer
Hero Member
Posts: 1195
Re: alpha-numeric password
«
Reply #4 on:
November 14, 2012, 02:30:24 PM »
If you haven't realized, you will need to tweak Char's code a bit as it checks the pw only contains numbers *or* letters but not both.
Logged
charl99
Full Member
Posts: 185
Re: alpha-numeric password
«
Reply #5 on:
November 15, 2012, 03:12:23 AM »
Hi Kevin,
I am not so sure about that, it does not check for SPACES but it certainly check for characters _and_ numbers.
Cheers
Charl
Logged
kevin plummer
Hero Member
Posts: 1195
Re: alpha-numeric password
«
Reply #6 on:
November 15, 2012, 03:16:51 PM »
I agree it checks for characters and numbers but maybe I misunderstood his original post as I thought he wanted to check the password contained *both* eg AAA111 not AAAAAA
Logged
Print
Pages: [
1
]
« previous
next »
NetTalk Central
»
NetTalk Web Server
»
Web Server - Ask For Help
»
alpha-numeric password