亲宝软件园·资讯

展开

怎样做一个随机密码产生器?

人气:0
想了解怎样做一个随机密码产生器?的相关内容吗,在本文为您仔细讲解的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:怎样何做做一一个个随随机机密密码码产产生生器器??,下面大家一起来学习吧。

<%
genPassword = ""
Randomize
For i = 1 to 8
intNum = Int(10 * Rnd + 48)
intUpper = Int(26 * Rnd + 65)
intLower = Int(26 * Rnd + 97)
intRand = Int(3 * Rnd + 1)
Select Case intRand
Case 1
strPartPass = Chr(intNum)
Case 2
strPartPass = Chr(intUpper)
Case 3
strPartPass = Chr(intLower)
End Select
genPassword = genPassword & strPartPass
Next
response.write(genPassword & "<br>")
%>

'
显示浏览器表头信息和服务器变量
<%
For Each name In Request.ServerVariables
Response.write("<b>"&name&"</b>:<br>")
Response.write(Request.ServerVariables(name))
Next
%><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

[1]

加载全部内容

相关教程
猜你喜欢
用户评论