I'm using asp.nbet membership which very handily gives you the choice of enforcing a min password length and the minimum numeric characters. Can you define others like there must be one upper-case character, etc?

cheers

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

It looks like the only other option is minRequiredNonAlphanumericCharacters, so no. But that doesnt stop you from putting a validator on the Login control password field.

link|improve this answer
very true, never thought about putting on a control validator! cheers – iamjonesy Apr 12 '10 at 14:24
feedback

There is also the ability to use a Regex against the password. The below is taken from this blog has some details:

http://weblogs.asp.net/pleloup/archive/2005/12/05/432359.aspx

Using regular expression

<membership ...>
  <providers>
    <add passwordStrengthRegularExpression= 
                "^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$" .../>
  </providers>
</membership>

Using minimum length and non-alphanumeric character

 <membership ...>
  <providers>
    <add minRequiredPasswordLength=10 minRequiredNonalphanumericCharacters=2 .../>
  </providers>
 </membership>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.