首页 > 开发 > 综合 > 正文

c# 刷新一次图片随机变换一次的页面代码

2024-07-21 02:26:56
字体:
来源:转载
供稿:网友

其中img文件夹里面有5张jpg图片,

   random r = new random();
   string path = "img/"+r.next(1,5)+".jpg";
   //输出格式
   response.contenttype = "image/jpeg";
   //输出文件
   response.writefile(path);
   response.end(); 

复杂点的话可以遍历某个文件夹里面的所有文件名.....

不懂的话看看asp版本的找点灵感

asp版本的

<%
randomize
dim url,total
total=10 '圖片總數
url="images/pic"&((int(rnd()*100000) mod total) +1)&".jpg"
'eg:
'url="images/pic1.jpg"
'url="images/pic8.jpg"
'.........
%>
<img src="<%=url%>"/>

简单了点...

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表