首页 > 网站 > 建站经验 > 正文

asp 一个简单生,成随机数程序

2019-11-02 15:30:54
字体:
来源:转载
供稿:网友

一个简单生成随机数程序
 Public Function GetRndCode(maxLen)
  Dim strNewPass,whatsNext,upper,lower,intCounter
  Randomize
  For intCounter = 1 To maxLen
   whatsNext = Int((1 - 0 + 1) * Rnd

双视影院[www.aikan.tv/special/shuangshiyingyuan/]
+ 0)
   If whatsNext = 0 Then
    upper = 90
    lower = 65
   Else
    upper = 57
    lower = 48
   End If
   strNewPass = strNewPass & Chr(Int((upper - lower + 1) * Rnd + lower))
  Next
  GetRndCode = strNewPass
 End Function
 
 使用方法
 code =GetRndCode(15)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表