龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > asp编程 >

asp For Next语句实例

时间:2012-12-31 22:56来源:未知 作者:admin 点击:
分享到:
asp教程 for next语句实例 html head titlefor next语句实例example25/title /head body % dim filename '图片文件名 for i = 9 to 0 step -2'用图片显示生成的随机数的每个数字 filename=img src=image/i.gif'图片文件名

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>


精彩图集

赞助商链接