手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp 随机字符串函数
asp 随机字符串函数
摘要:'*************************************'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

【asp 随机字符串函数】相关文章:

asp 删除图片与文件函数

asp 特殊字符屏蔽代码

asp最常用的分页函数

编写asp代码截取字符串

Asp 函数介绍

收集asp的常用函数

asp 字符串连接数据库方法

asp 中常用的文件处理函数

ASP常用函数:LastDay()

asp 判断数字是否整形

精品推荐
分类导航