vocation.asp
来自「基于C#语言的一个物流信息网数据库系统开发案例的源代码 ,很实用」· ASP 代码 · 共 20 行
ASP
20 行
<table width="180" height="21" border="0" cellpadding="0" cellspacing="0" >
<!-- #include file="../Conn/conn.asp" -->
<%
sql="select top 6* from tb_NewMeg order by IssueDate desc"
rs.open sql,conn
while not rs.eof
%>
<tr>
<td width="16"><div align="right"><img src="../images/yellowdot.gif" width="11" height="13" /></div></td>
<td width="164"><a href="#" onclick="window.open('New/show.asp?id=<%=rs("ID")%>','','width=540,height=500,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes')"> <%=rs("Title")%></a></td>
</tr>
<%
rs.movenext
wend
set rs=nothing
conn.close
set conn=nothing
%>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?