网络编程
位置:首页>> 网络编程>> Asp编程>> asp如何做一个随机密码产生器?

asp如何做一个随机密码产生器?

  发布时间:2010-07-12 18:57:00 

标签:随机,密码,asp

如何做一个随机密码产生器?

<%
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
%>


 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com