How to se 'Require strong password in ASP.NET Identity'
By FoxLearn 2/18/2024 1:10:50 AM 226
This post shows how to configure a require strong password in ASP.NET Identity using C#.NET.
Open your IdentityConfig.cs class, then modify your code as shown below
manager.PasswordValidator = new PasswordValidator { RequiredLength = 6, // Minimum length of the password RequireNonLetterOrDigit = true, // Must include a special character RequireDigit = true, // Must include a number RequireLowercase = true, // Must include a lowercase character RequireUppercase = true // Must include an uppercase character };
Use the PasswordValidator properties to define your own password validation policy
- How to use CORS in ASP.NET Core
- How to Send Emails in ASP.NET Core
- How to Run Background Tasks in ASP.NET Core with Hosted Services
- Implementing Scheduled Background Tasks in ASP.NET Core with IHostedService
- Creating an Web API in ASP.NET Core
- 8 Essential Tips to Protect Your ASP.NET Core Application from Cyber Threats
- 10 Common Mistakes ASP.NET Developers Should Avoid
- How to Upload Files Using C# ASP.NET FileUpload Control
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
12/19/2024