Hi,
I'm using the password extender and even though it says what your password stregnth is, it doesn't stop you from doing a postback.
So you could part-type your password and still update it.
has anyones came across this:
<asp:TextBox ID="txtPassword" runat="server" TextMode="Password"></asp:TextBox>
<ajaxControlToolkitasswordStrength ID="txtPassword_PasswordStrength" runat="server"
TargetControlID="txtPassword" DisplayPosition="BelowRight"
PrefixText="Your password is " StrengthIndicatorType="Text"
MinimumNumericCharacters="1" MinimumSymbolCharacters="1" PreferredPasswordLength="6"
RequiresUpperAndLowerCaseCharacters="true" TextStrengthDescriptions="Weak; Not Good; Good"
TextStrengthDescriptionStyles="TextStrengthWeak; TextStrengthNotGood; TextStrengthGood">
</ajaxControlToolkitasswordStrength>
<asp:Button ID="btnRegister" runat="server" Text="Register"
onclick="btnRegister_Click" />
Thanks
I'm using the password extender and even though it says what your password stregnth is, it doesn't stop you from doing a postback.
So you could part-type your password and still update it.
has anyones came across this:
<asp:TextBox ID="txtPassword" runat="server" TextMode="Password"></asp:TextBox>
<ajaxControlToolkitasswordStrength ID="txtPassword_PasswordStrength" runat="server"
TargetControlID="txtPassword" DisplayPosition="BelowRight"
PrefixText="Your password is " StrengthIndicatorType="Text"
MinimumNumericCharacters="1" MinimumSymbolCharacters="1" PreferredPasswordLength="6"
RequiresUpperAndLowerCaseCharacters="true" TextStrengthDescriptions="Weak; Not Good; Good"
TextStrengthDescriptionStyles="TextStrengthWeak; TextStrengthNotGood; TextStrengthGood">
</ajaxControlToolkitasswordStrength>
<asp:Button ID="btnRegister" runat="server" Text="Register"
onclick="btnRegister_Click" />
Thanks