How to se 'Require strong password in ASP.NET Identity'
By FoxLearn 2/18/2024 1:10:50 AM 189
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
- Unable to resolve service for type 'Microsoft.AspNetCore.Identity.RoleManager'
- ASP.NET MVC Responsive Templates Free Download
- How to upload file in ASP.NET MVC
- How to Create Contact Form Flat Responsive in ASP.NET MVC
- HTTP Error 500.30 ASP.NET Core app failed to start
- How to Use IExceptionHandler in ASP.NET Core
- How to custom exception handling in ASP.NET Core
- How to check if HttpPostedFileBase is an image
Categories
Popular Posts
Spica Admin Dashboard Template
11/18/2024