您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

用ASP实现刷新一次换一张图片

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 09:49 点击:

    看到别人网站中每次刷新都能看到不同的广告图片,是不是很羡慕啊?没关系啦,下面我们就来看一下如何用ASP实现刷新一次换一张图片:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%@response.Buffer=false%>
<%
用ASP实现刷新一次换一张图片
’代码设计 BY ICEWORLD
’说明:
’1:可以不加参数实现刷新一次换一次图片,也可以用index.asp?img=图片名字来显示指定的网页
’2:同上面的代码,加入了错误处理
’由于本人学习ASP时间不长,有错误的话,还希望高手不吝赐教
imagepath=server.MapPath("image")
’定义图片的文件夹

num=0
’num变量表示图片的个数
total=0
’total变量表示文件夹内部所有文件的个数
set fso=server.CreateObject("scripting.filesystemobject")
’创建fso对象
if not fso.folderexists(imagepath) then
response.Write("指定的图片文件夹不存在!")
response.End()
end if
’判断文件夹是否存在
img=request.QueryString("img")
if img<>"" then
imgpath=imagepath& "/" &img
if not fso.fileexists(imgpath) then
response.Write("对不起,您指定的图片没有找到!")
response.End()
end if
’如果有img变量,则判断该图片是否存在
else
set fileall=fso.getfolder(imagepath).files
for each d in fileall
if right(d.name,3)="bmp" or right(d.name,3)="gif" or right(d.name,3)="jpg" or right(d.name,3)="png" then
num=num+1
end if
total=total+1
next
’搜集一下图片和文件的总个数,得到变量num和total的值,可自己添加知道的图片后缀
if total=0 then
response.Write("文件夹存在,但是没有任何文件!")
response.End()
end if
’当文件夹为空的时候
if num=0 then
response.Write("虽然文件夹里面有文件,但是图片文件的个数为0!")
response.End()
end if
’当文件夹内部没有图片的时候
randomize
a=int(num*rnd+rnd)
for each d in fileall
if right(d.name,3)="bmp" or right(d.name,3)="gif" or right(d.name,3)="jpg" or right(d.name,3)="png" then
if rnnd=a then
imgpath=d.path
exit for
else
rnnd=rnnd+1
end if
end if
next
end if
’随即产生图片
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用ASP实现刷新一次换一张图片</title>
</head>

<body>
<%
if img="" then
%>
该文件夹内部共有文件<%=total%>个,其中图片有<%=num%>个,下面是随机产生的图片:
<%
else
%>
下面是你所提交的图片:
<% 
end if 
%><br><p align="center"> 
<img name="imagee" src="<%=imgpath%>" width="355" height="308" alt=""> </p> 
</body> 
</html> 
<% 
set fileall=nothing 
set fso=nothing 
%> 

技术交流 永无止境

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • WAP常见问题问答大全(四)
      • ASP开发必备:WEB打印代码大全
      • ASP调用系统ping命令
      • asp缓存技术
      • ASP教程:第三篇 ASP基础
      • 用ASP+XML打造留言本(4)
      • 关于ASP Recordset 分页出现负数解决方法及建议
      • 用asp怎样编写文档搜索页面(5)
      • ASP处理多关键词查询实例代码
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1