还有一种就是和大家想得差不多的:
dim arr,arrstr,rndnum,rndstr
arrstr="0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z"
'共36个
arr=split(arrstr,"|")
randomize timer
Do While len(rndstr)<56
'直到字符为56位
rndnum=Cstr(Cint(35*Rnd)) '随机抽取数组中的一位符号
rndstr=rndstr&arr(rndnum)
loop
response.write rndstr&"<br>"
response.write "长度为:"&len(rndstr)