asp 生成任意英文+数字位数长度的随机码函数
更新时间:2007年08月08日 12:10:46 作者:
<%
'******************************
'函数: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
%>
'******************************
'函数: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
%>
相关文章
UpdatePanel触发javascript脚本的方法附代码
UpdatePanel触发javascript脚本的方法附代码...2007-10-10
asp中利用CSW中文分词组件来实现自己网站的内容关键词自动提取
asp中利用CSW中文分词组件来实现自己网站的内容关键词自动提取...2007-03-03
asp中去除html中style,javascript,css代码
剔除页面中html中除文字以外的任何代码,刚才发布了php版这个是ASP中的版本。2010-10-10


最新评论