asp 随机字符串和数字组合函数 |
来源:智睿 浏览:1150 次 发布时间:2020-02-10 19:43:14 |
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 调用:<%=randomStr(10)%> |
【刷新页面】【加入收藏】【打印此文】 【关闭窗口】 |
上一篇:智睿政府网站管理系统 V 10.0.0 2020版政府网站系统, 事业单位网站系统 下一篇:SQL查询字段被包含语句CHARINDEX的用法 |