How do I define the password rules for Identity in ASP.NET MVC
By FoxLearn 2/18/2024 1:31:23 AM 278
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...
- Content Negotiation in Web API
- How to fix 'InvalidOperationException: Scheme already exists: Bearer'
- How to fix System.InvalidOperationException: Scheme already exists: Identity.Application
- Add Thread ID to the Log File using Serilog
- Handling Exceptions in .NET Core API with Middleware
- InProcess Hosting in ASP.NET Core
- Limits on ThreadPool.SetMinThreads and SetMaxThreads
- Controlling DateTime Format in JSON Output with JsonSerializerOptions
Categories
Popular Posts
AdminKit Bootstrap 5 HTML5 UI Kits Template
11/17/2024
Spica Admin Dashboard Template
11/18/2024