asp简单随机函数

发布时间:2020-08-08编辑:脚本学堂
asp简单随机函数
asp里的简单随机函数
复制代码 代码如下:
<%
dim a,b,c
a=1310:b=9215
randomize
c=int((b-a+1)*rnd+a)
%>