If you want to enforce that passwords must contain a non-alphanumeric character in ASP.NET Core Identity, which property should you set?

  • RequireNonAlphanumeric
  • RequireUppercase
  • RequireDigit
  • RequireLowercase
In ASP.NET Core Identity, the RequireNonAlphanumeric property should be set to true if you want to enforce that passwords must contain at least one non-alphanumeric character (e.g., special symbol). This adds an extra layer of security to user passwords.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *