其中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%>"/>
簡單了點...