picture.asp
来自「BBS源代码网上到处都是, 实现语言也不尽相同, 本人上传的BBSExample」· ASP 代码 · 共 34 行
ASP
34 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% option explicit%>
<%Response.Buffer=True%>
<!--#Include file="odbc_conn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body background="images/bback.gif">
<table border="0" cellpadding="0" cellspacing="0" width="80%" align="center">
<tr><td align="center"><font size="6" face="仿宋_GB2312" color="#3399FF"><b>小珍的写真集</b></font></td></tr>
<%
dim sql,rs,id
sql="select * from photo"
set rs=conn.execute(sql)
do while not rs.eof
%>
<tr>
<td><a href="showlarge.asp?id=<% =rs("id") %>" target="_blank"><img src="show.asp?id=<% =rs("id") %>" height="280" width="250" border="0"></a></td>
</tr>
<tr>
<td><a href="showlarge.asp?id=<% =rs("id") %>" target="_blank"><%=rs("phototext")%></a></td>
</tr>
<%
rs.movenext
loop
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?