学院首页 新手上路 建站指南 主页制作 图片处理 动画制作 网站编程 制作软件 网站发布 技术论坛 大宝库主页
当前位置:学院首页 >> 网站编程 >> asp >> 正文

产生随机密码的函数
转自:网页制作大宝库 时间:2003-12-4 12:32:15

<%
response.write makePassword(16)

function makePassword(byVal maxLen)

Dim strNewPass
Dim whatsNext, upper, lower, intCounter
Randomize

For intCounter = 1 To maxLen
whatsNext = Int((1 - 0 + 1) * Rnd + 0)
If whatsNext = 0 Then
'character
upper = 90
lower = 65
Else
upper = 57
lower = 48
End If
strNewPass = strNewPass & Chr(Int((upper - lower + 1) * Rnd + lower))
Next
makePassword = strNewPass

end function
%> 


(编辑:dabaoku)
发表评论】【关闭窗口