Special language characters in username of ASP.NET Identity

谁说我不能喝 提交于 2019-12-22 17:53:05

问题


I would like to use some special characters like ø in user name.

But I am facing this error in

IdentityResult result = UserManager.Create(applicationUser, password);

Error:

User name testø is invalid, can only contain letters or digits.

How we can fix it? How to allow some special characters?


回答1:


I found what do I have to do

 public class ApplicationUserManager : UserManager<ApplicationUser>
    {
        public ApplicationUserManager()
            : base(new UserStore<ApplicationUser>(new ApplicationDbContext()))
        {
            PasswordValidator = new MinimumLengthValidator(4);
            UserValidator = new UserValidator<ApplicationUser>(this)
            { AllowOnlyAlphanumericUserNames = false  }; 
        }
    }


来源:https://stackoverflow.com/questions/26909286/special-language-characters-in-username-of-asp-net-identity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!