asp For Next语句实例
asp教程 for next语句实例
<html>
<head>
<title>for next语句实例example25</title>
</head>
<body>
<%
dim filename '图片文件名
for i = 9 to 0 step -2 '用图片显示生成的随机数的每个数字
filename="<img src=image/"&i&".gif>" '图片文件名
response.write filename '在网页上显示图片
next
%>
</body>
</html>
实例二
<html>
<head>
<title>for next语句实例example24</title>
</head>
<body>
<%
dim filename '图片文件名
for i=0 to 9 step 2 '用图片显示生成的随机数的每个数字
filename="<img src=image/"&i&".gif>" '图片文件名
response.write filename '在网页上显示图片
next
%>
</body>
</html>
- 上一篇:二款asp 邮箱地址验证代码
- 下一篇:access 数据连接程序