您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

随机产生用户密码

来源:网络整理 责任编辑:栏目编辑 发表时间:2013-07-01 09:02 点击:
    说明:通过随机产生密码,然后将密码EMail给注册用户,你可以确认用户的EMail填写是否正确。自动产生的密码往往安全性更高,同时,你可以过滤那些无效的用户。
  
  
    把下面的代码保存为random.asp文件:
  
  <%
  Sub StrRandomize(strSeed)
     Dim i, nSeed
     nSeed = CLng(0)
     For i = 1 To Len(strSeed)
       nSeed = nSeed Xor ((256 * ((i - 1) Mod 4) * AscB(Mid(strSeed, i, 1))))
     Next
  
     Randomize nSeed
  End Sub
  
  
  
  Function GeneratePassword(nLength)
     Dim i, bMadeConsonant, c, nRnd
  
     Const strDoubleConsonants = "bdfglmnpst"
     Const strConsonants = "bcdfghklmnpqrstv"
     Const strVocal = "aeiou"
  
     GeneratePassword = ""
     bMadeConsonant = False
  
     For i = 0 To nLength
       nRnd = Rnd
       If GeneratePassword <> "" AND (bMadeConsonant <> True) AND (nRnd < 0.15) Then
         c = Mid(strDoubleConsonants, Int(Len(strDoubleConsonants) * Rnd + 1), 1)
         c = c & c
     i = i + 1
         bMadeConsonant = True
       Else
         If (bMadeConsonant <> True) And (nRnd < 0.95) Then
           c = Mid(strConsonants, Int(Len(strConsonants) * Rnd + 1), 1)
           bMadeConsonant = True
         Else
           c = Mid(strVocal,Int(Len(strVocal) * Rnd + 1), 1)
           bMadeConsonant = False
         End If
       End If
       GeneratePassword = GeneratePassword & c
     Next
  
     If Len(GeneratePassword) > nLength Then
       GeneratePassword = Left(GeneratePassword, nLength)
     End If
  End Function
  %>
  
  
    然后在你的目标程序中这样调用上面的代码,就可以实现密码的自动生成:(仅仅是一个例子,你可以把他们粘贴到一个Test.asp的文件中,然后运行Test.asp)
  
  <!--include file="random.asp" -->
  
  <%
  '产生一个六位的密码
  
  StrRandomize CStr(Now) & CStr(Rnd)
  response.write GeneratePassword(6)
  
  %>
  <br><br>
  
  <%
  
  '产生一个8位的密码
  StrRandomize CStr(Now) & CStr(Rnd)
  response.write GeneratePassword(8)
  
  %>
  <br><br>
  
  
  <%
  '产生一个10位的密码
  StrRandomize CStr(Now) & CStr(Rnd)
  response.write GeneratePassword(10)
  %>
  <br><br>
  
  <%
  
  '产生1000个密码
  
  dim t, t2
    for t = 1 to 500
    For t2 = 1 to 661
     StrRandomize CStr(Now) & CStr(Rnd)
    next
    StrRandomize CStr(Now) & CStr(Rnd)
    response.write GeneratePassword(6)
    response.write "<br>"
  next
  
  %>
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • WAP常见问题问答大全(四)
    • ASP开发必备:WEB打印代码大全
    • ASP调用系统ping命令
    • asp缓存技术
    • ASP教程:第三篇 ASP基础
    • 用ASP+XML打造留言本(4)
    • 关于ASP Recordset 分页出现负数解决方法及建议
    • 用asp怎样编写文档搜索页面(5)
    • ASP处理多关键词查询实例代码
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1