Found a nice post from Chris Blankenship’s blog about generating a Random Password, the code is just one line of code and is quite simple
string password = Membership.GeneratePassword(12, 1);
Console.Writeline(“Random Password: ” + password);
Found a nice post from Chris Blankenship’s blog about generating a Random Password, the code is just one line of code and is quite simple
string password = Membership.GeneratePassword(12, 1);
Console.Writeline(“Random Password: ” + password);