|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
asp:login - password validationIn ASP.NET 2.0, I am using the asp:login control, but I want to reduce the
validation on the password. I dont want the user to have to put in a special character or a number etc. Is it possible to reduce the level of validation? Yes, you can re-configure the membership provider in web.config. The
default properties you want to change are: minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" I have an article with a few examples: http://odetocode.com/Articles/427.aspx -- Show quoteScott http://www.OdeToCode.com/blogs/scott/ On Sat, 3 Dec 2005 05:52:02 -0800, "David Brown" <David Br***@discussions.microsoft.com> wrote: >In ASP.NET 2.0, I am using the asp:login control, but I want to reduce the >validation on the password. > >I dont want the user to have to put in a special character or a number etc. > >Is it possible to reduce the level of validation? |
|||||||||||||||||||||||