当前位置:编程学习 > asp >>

产生随机密码的函数

答案:<%
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
%>

上一个:转帖一个ASP作的剪包锤游戏
下一个:这里!!

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,