冯 海

一个程序新人菜鸟的日记,希望大家多多关照。QQ:32316131

mvc5 identity 注册时的密码强度在哪改

现在新的非要一个大写字母,一个字符串,也许我们也烦哩。

在 App_Start/IdentityConfig.cs文件中 ApplicationUserManager.Create 静态方法中:

// Configure validation logic for passwords
manager.PasswordValidator = new PasswordValidator
{
    RequiredLength = 8,
    RequireNonLetterOrDigit = true,  //必须有非字母非数字字符
    RequireDigit = true,   //需要数字
    RequireLowercase = true, //需要小写
    RequireUppercase = true,  //需要大写字母
};

  按要求更改即可。

posted @ 2017-05-08 14:48  秋天来了哟  阅读(401)  评论(0编辑  收藏  举报
认识就是缘份,愿天下人都快乐!
QQ: 32316131
Email: 32316131@qq.com