tags:

views:

27

answers:

3

how to autogenerate random password in asp.net mvc application

+3  A: 

Here's a nice article that might help you.

Darin Dimitrov
+1  A: 

read this article

mazhar kaunain baig
A: 

In the past I've done it once by using a piece of a Guid. I just created a new guid, converted it to a string and took the piece I wanted, I think it were the characters in the back I used, or the other way around. Tested it with 100 loops and every time the string was different.

Doesn't has anything to do with MVC though...

Jan_V