asp

位置:IT落伍者 >> asp >> 浏览文章

asp 指定读取前几条记录


发布日期:2020年07月04日
 
asp 指定读取前几条记录

<%dim sqlnote
sqlnote="select top * from note order by id desc"
call opendb()
rsopen sqlnoteconn
if not rseof then
do while not rseof

%>
<tr>
<td width="" height="" align="left" bgcolor="#FFFFFF" >&nbsp;</td>
<td width="" height="" align="left" bgcolor="#FFFFFF" ><img src="index_files/dot_emailgif" width="" height="" />&nbsp;<a href="<%=rs("file_path")%>" target="_blank" class="prodcut" title="<%=rs("title")%>"><%=rs("title")%></a>&nbsp;&nbsp;
<% if rs("send_date")=date() then
responsewrite("<img src=index_files/newgif />")
else responsewrite(rs("send_date"))
end if%></td>
<td width="" height="" align="left" bgcolor="#FFFFFF" >&nbsp;</td>
</tr>
<%
rsmovenext
loop%>
<tr >
<td colspan="" align="right" bgcolor="#FFFFFF" ><a href="noteasp教程" class="page" >更多信息</a>&nbsp;&nbsp;&nbsp;</td>
</tr>
<%
else
%>
<tr class="button">
<td colspan="" bgcolor="#FFFFFF">暂时没有通知通告</td>
</tr>
<%
end if
call closedb()
%>


上一篇:ASP中DateAdd函数日期使用

下一篇:asp添加数据库记录