• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp 生成任意英文+数字位数长度的随机码函数
    %
    '******************************
    '函数:Generator(Length)
    '参数:Length,任意长度的数值,随机码位数
    '作者:阿里西西
    '日期:2007/7/15
    '描述:生成任意英文+数字位数长度的随机码函数
    '示例:Generator(80)
    '******************************
    Function Generator(Length)
     Dim i, tempS
     tempS = "abcdefghijklmnopqrstuvwxyz1234567890" 
     Generator = ""
     If isNumeric(Length) = False Then 
      Exit Function 
     End If 
     For i = 1 to Length 
      Randomize 
      Generator = Generator  Mid(tempS,Int((Len(tempS) * Rnd) + 1),1)
     Next 
    End Function 
    %>
    上一篇:ASP通用分页样式函数代码
    下一篇:ASP自动获取汉字首字母函数(支持UTF-8/GB2312)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp 生成任意英文+数字位数长度的随机码函数 asp,生成,任意,英文,数字,