|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般函数|随机|随秘密码发生随秘密码的函数
<%
response.writemakePassword(16)
functionmakePassword(byValmaxLen)
DimstrNewPass
DimwhatsNext,upper,lower,intCounter
Randomize
ForintCounter=1TomaxLen
whatsNext=Int((1-0+1)*Rnd+0)
IfwhatsNext=0Then
character
upper=90
lower=65
Else
upper=57
lower=48
EndIf
strNewPass=strNewPass&Chr(Int((upper-lower+1)*Rnd+lower))
Next
makePassword=strNewPass
endfunction
%>
ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。 |
|