How do I define the password rules for Identity in ASP.NET MVC
By FoxLearn 2/18/2024 1:31:23 AM 248
This post shows you how to define the password rules for Identity in ASP.NET MVC
As you all know, the default Identity provider provided in ASP.NET MVC has very strict password rules by default, such as requiring lowercase character, uppercase character, non-alphanumeric character and a number.
To config the password rules you need open IdentityConfig.cs and then configure the password rules that you want.
// Configure validation logic for passwords manager.PasswordValidator = new PasswordValidator { RequiredLength = 3, RequireNonLetterOrDigit = false, RequireDigit = false, RequireLowercase = false, RequireUppercase = false };
You can change login password length, digit, lowercase, upercase...
- 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