当前位置:主页 > 软件编程 > ASP代码 >

asp 随机字符串函数

时间:2021-07-07 08:51:09 | 栏目:ASP代码 | 点击:

'*************************************
'asp计算随机数
'*************************************

Function randomStr(intLength)
Dim strSeed, seedLength, pos, Str, i
strSeed = "abcdefghijklmnopqrstuvwxyz1234567890"
seedLength = Len(strSeed)
Str = ""
Randomize
For i = 1 To intLength
Str = Str + Mid(strSeed, Int(seedLength * Rnd) + 1, 1)
Next
randomStr = Str
End Function

您可能感兴趣的文章:

相关文章