how to generate a random number that serves the purpose of a password
How to generate a random number that serves the purpose of a password, when entered to a textbox if correct after a button clicks takes the user to the next page.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Mar 12, 2010, 2:37 PM
using System.Web.Security;
.
.
.
String Password = Membership.GeneratePassword(12, 1);