Implement Password Policy using Regular Expressions and ASP.Net RegularExpression Validator


#1: Minimum 8 characters atleast 1 Alphabet and 1 Number

Example: pass1234 OR PaSs1234 OR PASS1234


#2: Minimum 8 characters atleast 1 Alphabet, 1 Number and 1 Special Character

Example: pass@123 OR PaSS#123 OR PASS@123


#3: Minimum 8 characters atleast 1 Uppercase Alphabet, 1 Lowercase Alphabet and 1 Number

Example: PaSs1234 OR pASS1234


#4: Minimum 8 characters atleast 1 Uppercase Alphabet, 1 Lowercase Alphabet, 1 Number and 1 Special Character
Example: PaSs@123



#5: Minimum 8 and Maximum 10 characters atleast 1 Uppercase Alphabet, 1 Lowercase Alphabet, 1 Number and 1 Special Character
Example: PaSs@123



© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.