tupi.asp

来自「asp 网站开发技术介绍」· ASP 代码 · 共 25 行

ASP
25
字号
<!--#include file="conn.asp"-->
<%
exec="select * from tushumingxi"
Set rs=Server.CreateObject("adodb.recordset")
rs.open exec,conn,1,1
%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>显示图片</title>
</head>
<body>
<table width ="800" height ="240" align ="center">
<marquee  >
<%while (not rs.eof)%>
<a href="mx.asp?bh=<%=rs.("bh")%>"><img src=<%=rs("tp")%>></a>
<%rs.movenext()
wend
%>
</marquee>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?