indeximgnews.asp
来自「一个互联网络公司网站源码」· ASP 代码 · 共 13 行
ASP
13 行
<!--#include file="conn.asp" -->
<%
sql="select top 1 * from article where articleType='新闻动态' and articlePic<>'' order by id desc"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1
if not rs.eof then
%>
document.write("<a href=\"xwdt/xwdt.htm?id=<%=rs("id")%>\"><img src=\"<%=rs("articlePic")%>\" title=\"<%=rs("title")%>\" width=\"121\" height=\"108\" border=\"0\"></a>");
<%
end if
rs.close
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?