I'm using asp.net mvc core for my project. In the registration form i got a problem with validation.
1) Password ask for special symbol (like @+*! etc)
2) The validation message is not correct (Passwords must have at least one non alphanumeric character. Passwords must have at least one lowercase ('a'-'z')).
How can i change requiments of special symbol to password and where can i change validation error?
I've found the answer for asp.net mvc 5 with config file, but asp.net core doesn't have any config files for this.
ErrorDescriberI think, which is separate from the validation rules themselves. Sounds like he already has the rule he wants, but wants to change the message it has.