asp 随机 asp 随机字符串函数
人气:0想了解asp 随机字符串函数的相关内容吗,在本文为您仔细讲解asp 随机的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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
加载全部内容