ASP.NET Membership and passwordStrengthRegularExpression
by Sebastien Aube Membership in the .NET framework 2.0 allows you to add security to your application with little to no code. When trying to enforce strong password rules in our church software I encounteredan interesting problem. At first I modified the web.config by adding the following line to our membershipprovider section. passwordStrengthRegularExpression=“(?=.{8,})[a-z]+[^a-z]+|[^a-z]+[a-z]+” RegEx explained: [...]
More »


