?? showimg.asp
字號:
<!--#include file="conn.asp"-->
<%Response.Expires = -1
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "Cache-Control", "no-cache, must-revalidate"%>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Aojie在線大頭貼</title>
<link href="images\table.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.STYLE1 {font-size: 12px}
-->
</style>
</head>
<body>
大頭貼圖庫:<br />
以下圖片由TFOT Photo 5.0生成
<%
call DataConnect
ii=1
sql="select * from [img] order by id desc"
set rs=conn.execute(sql)
%>
<table width="100%" border="0">
<tr>
<%
while not rs.eof
'每行顯示5個圖片
if (ii mod 5)=0 then
%>
<td> <div><img src="<% =rs("myshow") %>"/></div></td></tr><tr>
<%
else
%>
<td> <div><img src="<% =rs("myshow") %>"/></div></td>
<%
end if
%>
<%
ii=ii+1
rs.movenext
wend
call DataDisConnect
%>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -