📄 mup.asp
字号:
<!--#include file="../inc/conn.asp"-->
<%
set rs=conn.execute("select top 8 * from productinfo order by id desc")
if rs.eof then
response.write"无产品"
else
%>
<marquee bgcolor="#339900" direction="left" scrollAmount=2>
<% do while not rs.eof %>
<a href=list.asp?id=<%=rs("id")%> target=_blank><img src=../admin/pic/<%=rs("productphoto")%> width=128 height=100 class="img" ></a>
<%
rs.movenext
loop %>
</marquee>
<%
rs.Close
set rs=nothing
End If %>
<p class="img"> </p>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -