首页 > 学院 > 编程设计 > 正文

如何编制一个产生随机密码的函数?

2020-06-19 13:50:27
字体:
来源:转载
供稿:网友
<%
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
        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
%>

[1]

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表