What is the best approach to generate random Password for user in asp.net 2.0
-
What are the best approaches to generate random password for User ? Is their any class available in .net 2.0 ? which approach would be best ? and proffessional way to do this? please direct me in right direction . Best Regards Rameez
-
What are the best approaches to generate random password for User ? Is their any class available in .net 2.0 ? which approach would be best ? and proffessional way to do this? please direct me in right direction . Best Regards Rameez
Oh, I see. You're retarded. I'm sorry about that. Get one of your minders, the ones who help you go to the toilet, to read the answer I gave you last time and explain it to you. There is no other answer. There's no class available, and no other way to do it.
Christian Graus Driven to the arms of OSX by Vista.
-
Oh, I see. You're retarded. I'm sorry about that. Get one of your minders, the ones who help you go to the toilet, to read the answer I gave you last time and explain it to you. There is no other answer. There's no class available, and no other way to do it.
Christian Graus Driven to the arms of OSX by Vista.
Thank you very much for good answer . iam new to .net thatswhy i want to confirm from those who has idea of that. else thanks for answering . Again thanks :rose: best regards Rameez
-
Thank you very much for good answer . iam new to .net thatswhy i want to confirm from those who has idea of that. else thanks for answering . Again thanks :rose: best regards Rameez
If you're new to .NET, why are you writing a password system for someone ? Oh, because you're cheap. I don't mind that outsourcing happens, but I am offended at how many completely unqualified people are taking part in it.
Christian Graus Driven to the arms of OSX by Vista.
-
What are the best approaches to generate random password for User ? Is their any class available in .net 2.0 ? which approach would be best ? and proffessional way to do this? please direct me in right direction . Best Regards Rameez
-
What are the best approaches to generate random password for User ? Is their any class available in .net 2.0 ? which approach would be best ? and proffessional way to do this? please direct me in right direction . Best Regards Rameez
I don't know what is Best, but i can suggest you one which may help you
Random objRan = new Random();
int ran1 = objRan.Next(10000000,99999999);
int ran2 = objRan.Next(1000, 9999);
string strRandom = ran1.ToString() + ran2.ToString() + DateTime.Now.Millisecond.ToString();you can try this or can even generate your own algo for same. I think it will assist you to generate a Random number everytime
-
I don't know what is Best, but i can suggest you one which may help you
Random objRan = new Random();
int ran1 = objRan.Next(10000000,99999999);
int ran2 = objRan.Next(1000, 9999);
string strRandom = ran1.ToString() + ran2.ToString() + DateTime.Now.Millisecond.ToString();you can try this or can even generate your own algo for same. I think it will assist you to generate a Random number everytime
Thanks for reply what about Guid (Global Unique ID) class may i use this for genrating random Password.? OR i will use Random object for creating random password ? which one approach is best ? Best Regards Rmaeez
-
Thanks for reply what about Guid (Global Unique ID) class may i use this for genrating random Password.? OR i will use Random object for creating random password ? which one approach is best ? Best Regards Rmaeez
Hi I suggest you to visit http://aspnet.4guysfromrolla.com/articles/101205-1.aspx and This one describe three different techniques and also evaluate the each one http://geekswithblogs.net/kakaiya/archive/2005/11/27/61273.aspx Regards Aman Bhullar