01.
一个生成随机密码的函数tmp = "0123456789abcdefghijklmnopqrstopwxyz"tmpPWD = RoundStr(tmp,8)Function RoundStr(str,Num) s = "" for i = 1 to Num Randomize strLen = Len(str) t = Round((RND * (strLen-1))+1) s...查看完整版>>
一个生成随机密码的函数
02.
随机生成密码函数function makePassword(byVal maxLen) Dim strNewPass Dim whatsNext, upper, lower, intCounter Randomize For intCounter = 1 To maxLen whatsNext = Int((1 - 0 + 2) * Rnd + 0) If whatsNext = 0 Then 'charact...查看完整版>>
随机生成密码函数
03.
生成任意位随机数的函数'生成任意位随机数的函数'strLong是随机数字的位数,数字型Function rndNum (strLong) Dim temNum Randomize Do While Len(RndNum) < strLong temNum=CStr(Chr((57-48)*rnd+...查看完整版>>
生成任意位随机数的函数
04.
ASP实例学习:随机生成文件名的函数Place this code into an ASP Page and run it! -- Random FileName Creation Function Generator(Length) dim i, tempS, v dim c(39) tempS = "" c(1) = "a": c(2) = "b": c(3) = "c": c(4)...查看完整版>>
ASP实例学习:随机生成文件名的函数
05.
随机生成文件名的函数<html> <meta http-equiv="Refresh" content="2"> <!-- Place this code into an ASP Page and run it! --> <code> Random FileName Creation <% Function Generator(Length) di...查看完整版>>
随机生成文件名的函数
06.
ASP实例学习:随机生成文件名的函数<html> <meta http-equiv="Refresh" content="2"> <!-- Place this code into an ASP Page and run it! --> <code> Random FileName Creation <% Function Generator(Le...查看完整版>>
ASP实例学习:随机生成文件名的函数
07.
随机生成文件名的函数<html> <meta http-equiv="Refresh" content="2"> <!-- Place this code into an ASP Page and run it! --> <code> Random FileName Creation <% Function Generator(Length) di...查看完整版>>
随机生成文件名的函数
08.
ASP随机涵数生成100条8位字母和数字混合密码<%for i = 1 to 100%><%Randomizepass=""Do While Len(pass)<8 '随机密码位数 num1=CStr(Chr((57-48)*rnd+48)) '0~9 num2=CStr(Chr((122-97)*rnd+97)) 'a~z pass=pass&num1&num2loop '原创:www....查看完整版>>
ASP随机涵数生成100条8位字母和数字混合密码
09.
调用linux日期函数,实现每天自动生成一个oracle备份要害是要在脚本中加入Oracle的环境变量和在备份文件名中加入$DATE变量-bash-2.05b$ more /opt/oracle/prodUCt/movedata/movedata1.shORACLE_HOME=/opt/oracle/product/9.0.2eXPort ORACLE_HOME. /opt/oracle/pro...查看完整版>>
调用linux日期函数,实现每天自动生成一个oracle备份
10.
一个获得随机字符串的asp函数response.write getCode(10) '得到一个长度为10 的随机字符串Function getCode(iCount) Dim arrChar Dim j,k,strCode arrChar = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" k=Len(arrChar) Rand...查看完整版>>
一个获得随机字符串的asp函数
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。