如何显示固定数据库记录?.......急.........
请教,我想在页面上显示固定100条记录,如果我要在后台添加最新的数据,前台页面自动往下移动,把最新的数据显示在上面,请问这个代码如何实现?小弟很急。。。。
<%
sql="select * from aaa order by id desc"
set rs=conn.execute(sql)
if not (rs.eof and rs.bof) then
do while not rs.eof
response.write(rs("id")&"<br>")
rs.movenext
loop
end if
%>