asp

位置:IT落伍者 >> asp >> 浏览文章

asp 一个简单生成随机数程序


发布日期:2022年04月04日
 
asp 一个简单生成随机数程序

一个简单生成随机数程序
Public Function GetRndCode(maxLen)
Dim strNewPasswhatsNextupperlowerintCounter
Randomize
For intCounter = To maxLen
whatsNext = Int(( + ) * Rnd + )
If whatsNext = Then
upper =
lower =
Else
upper =
lower =
End If
strNewPass = strNewPass & Chr(Int((upper lower + ) * Rnd + lower))
Next
GetRndCode = strNewPass
End Function

使用方法
code =GetRndCode()

上一篇:asp 去除字符串中的空格和数字正则表达式

下一篇:ASP中使用Form和QueryString集合