Link to home
Start Free TrialLog in
Avatar of countrymeister
countrymeister

asked on

Password strength generator

I want to generate a password strength generator, indicating to the users the strength of their password.
The password needs to be atleast six characters, need to have one upper case letter, one number and one special character.
I need to do this in .net, can someone help me with this.
Avatar of disrupt
disrupt
Flag of United States of America image

ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of countrymeister
countrymeister

ASKER

Here  is what I did to create my password strength generator

<asp:TextBox id="ItxtPassword"   runat="server" />
            <ajaxToolkit:PasswordStrength runat="server" ID="PS"
                    TargetControlID="ItxtPassword"
                    DisplayPosition="RightSide"
                    MinimumSymbolCharacters="1"
                    MinimumUpperCaseCharacters="1"
                    MinimumNumericCharacters="1"
                    PreferredPasswordLength="8"
                    CalculationWeightings="25;25;15;35"
                    RequiresUpperAndLowerCaseCharacters="true"
                    TextStrengthDescriptions="Poor; Weak; Good; Strong; Excellent"
                    StrengthIndicatorType="BarIndicator"
                    HelpHandlePosition="AboveLeft"
                    BarBorderCssClass="barIndicatorBorder"
                    StrengthStyles="barIndicator_poor; barIndicator_weak; barIndicator_good; barIndicator_strong; barIndicator_excellent">
               </ajaxToolkit:PasswordStrength>
I solved this using an ajax pasword strength extender
This was a soluiton wher the author made a genuine effort to help.
The rest sent me some links for jquery