手机
当前位置:查字典教程网 >编程开发 >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 删除图片与文件函数

精品推荐
分类导航