Hello,
I need help...I'm trying to have a regex expression that validates a strong password with 8-12 chars, 1 uppercase, 1 lowercase and 1 digit, but this regex when applied to a asp:regularfieldvalidator it works on Firefox and not on IE6/7, because of the lookaheads. Can you, please pretty please, help me?
The regex is
(?=.*[a-z].*)(?=.*[A-Z].*)(?=.*\d.*)\S{8,12}
Thank you,