Generate a Random String


/ Published in: VB.NET
Save to your folder(s)

If you need to generate a random string of mixed characters, this simple function will do it for you. This will return something like this: 80a7a705-9c23-47bc-92b6-2b5c4f9d728d. Which you then can do various string functions to make it the way you want.


Copy this code and paste it in your HTML
  1. Public Function GenerateRandomString() As String
  2. GenerateRandomString= System.Guid.NewGuid.ToString
  3. End Function

URL: http://codefinds.blogspot.com/2008/10/generate-random-string.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.