Sorry for my poor English.
I just curious if does the Random alphanumeric is very unique even i have a millions of data? Because I develop a software that I want every data have a unique Alphanumeric.
By the way, how many sets of random does this code make?
Dim s As String = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
Dim r As New Random
Dim sb As New StringBuilder
For i As Integer = 1 To 8
Dim idx As Integer = r.Next(0, 35)
sb.Append(s.Substring(idx, 1))
Next
random.Text = sb.ToString()