Quote:
Originally Posted by vishwas1001
Hello everybody.
I am using CreateUserWizard control in asp.net for creating new user. There is an inbuilt validation for password that 'there must be a non-numeric value and password must be of atleast 7 characters.'
I do not want these kind of validations. So what should I do for removing these inbuilt validations? I have tried a lot in properties but I am not getting it.Please reply soon folks. If possible then also mail me on *PURGED*
Thanks in advance.
I haven't actually tried to do what you are doing but let me explain:
Your CreateUserWizard control has a
provider that it uses to create the user's account. This provider has validation rules that it enforces on password strength. If you are using the default membership database and provider setup that now comes with Visual Studio, I think you're stuck with these default settings.
If you want to change this value I would think that you'd have to somehow edit the provider that you're using.
I could be wrong here as I've never used the built in providers...but I know that I was able to change this restriction when developing my own custom providers.
-Frinny