赞助广告 赞助广告
  当前位置:网络学院服务器邮件服务器 → 产生随机密码的函数
产生随机密码的函数
日期:2001年7月7日 作者:不详 人气: 查看:[大字体 中字体 小字体]
<%
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
%>

(出处:不详 )

相关文章:
 
相关软件:
 
  特别推荐
  热点TOP10