I used Membership.GeneratePassword(10, 0) in my C# application code. The GeneratePassword method Generates a random password of the specified length.
The second argument specifies the the minimum number of non-alphanumeric characters (such as @, #, !, %, &, and so on) in the generated password.
I don't want any non-alphanumeric characters so I specified zero. However, it still fails because I got a password with Nonalphanumeric content when I execute Membership.GeneratePassword(10, 0)
Lg|1-F;?a4
Why the pipe( | ) and the hypen( - ) and semicolon and the question mark?