|
欢迎来到月影社区!如果您觉得这里不错,请推荐给您的朋友们。月影社区:http://wf66.com/ |
随机密码产生器
|
|
<%
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 & "
")
%>
Display All Browser Headers and Server Variables
<%
For Each name In Request.ServerVariables
Response.write("<b>"&name&"</b>:
")
Response.write(Request.ServerVariables(name))
Next
%>
随机密码产生器 |
[ 1 ] |
|
随机密码产生器 num |
【打印本页
关闭】 |
|