how to change password restriction in CreateUserWizard?

  • Thread starter Thread starter André
  • Start date Start date
A

André

Hi,

I want to set up the password length to 5 and no non-alphanumeric
chararcters required, and obviously change the error text in the
CreateUserWizard in case of wrong password, instead of the standard rule
(Password length minimum: 7. Non-alphanumeric characters required: 1). Is
that possible? I know the security is then lower, but it's all a matter of
relationship between security and easyness.

Thanks for help
Dan
 
We can change the alphanumeric password requirements in the web.config file
membership provider settings [1]. For the most part the canned 2.0 controls
have to be ripped apart to use their templates for other modifications.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-88043838&z=17&l=0&m=h

[1]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNETProvMod_Prt1.asp
 
Thanks

clintonG said:
We can change the alphanumeric password requirements in the web.config
file membership provider settings [1]. For the most part the canned 2.0
controls have to be ripped apart to use their templates for other
modifications.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-88043838&z=17&l=0&m=h

[1]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNETProvMod_Prt1.asp


André said:
Hi,

I want to set up the password length to 5 and no non-alphanumeric
chararcters required, and obviously change the error text in the
CreateUserWizard in case of wrong password, instead of the standard rule
(Password length minimum: 7. Non-alphanumeric characters required: 1). Is
that possible? I know the security is then lower, but it's all a matter
of
relationship between security and easyness.

Thanks for help
Dan
 
thanks

clintonG said:
We can change the alphanumeric password requirements in the web.config
file membership provider settings [1]. For the most part the canned 2.0
controls have to be ripped apart to use their templates for other
modifications.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-88043838&z=17&l=0&m=h

[1]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNETProvMod_Prt1.asp


André said:
Hi,

I want to set up the password length to 5 and no non-alphanumeric
chararcters required, and obviously change the error text in the
CreateUserWizard in case of wrong password, instead of the standard rule
(Password length minimum: 7. Non-alphanumeric characters required: 1). Is
that possible? I know the security is then lower, but it's all a matter
of
relationship between security and easyness.

Thanks for help
Dan
 
Back
Top