IT Community - Software Programming, Web Development and Technical Support

How to generate word or password randomly?

This is a discussion on How to generate word or password randomly? within the C# Programming forums, part of the Software Development category; How to generate word or password randomly?...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > C# Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-21-2007, 01:19 AM
Archer Archer is offline
D-Web Programmer
 
Join Date: Jun 2007
Posts: 52
Archer is on a distinguished road
Question How to generate word or password randomly?

How to generate word or password randomly?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-21-2007, 01:20 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Re: How to generate word or password randomly?

Hi.. You can try the below way..

This is the easiest and simplest way to generate the word or password randomly.
string schars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW XYZ";
string name = string.Empty;
Random rand = new Random(DateTime.Now.Millisecond);
while (name.Length < 6)
name += schars[rand.Next(0, schars.Length)];
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to generate nodes of XML in the required format? poornima ASP and ASP.NET Programming 2 02-14-2008 09:17 PM
Crack a password protected word document using C#? $enthil C# Programming 3 11-19-2007 11:33 PM
How do I generate a random number from php? itbarota PHP Programming 2 09-25-2007 08:57 AM
How to generate random password generator.using javascript.? itbarota HTML, CSS and Javascript Coding Techniques 1 07-26-2007 12:42 AM
How do I generate a random number from php? kingmaker PHP Programming 2 07-24-2007 02:56 AM


All times are GMT -7. The time now is 10:44 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0