以下是俺的程序,现在显示的是guanceyuebaobiao表中最后一行"开机次数"和"工作时间"的值,但我想让它显示倒数第二行或者第三行的值,请问我该如何修改程序呢?
<%
set conn=server.CreateObject("adodb.connection")
DBPath = Server.MapPath("shujuku/radar.mdb")
conn.open "provider=microsoft.jet.oledb.4.0; data source="&DBpath
set rs=server.CreateObject("adodb.recordset")
sql="select * from guanceyuebaobiao order by 年月 desc"
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<body>
<div align="center">
<form name="form1" method="post" action="">
<table width="523" border="1" cellpadding="0" cellspacing="0">
<tr>
<td height="30"><p align="center"><font size="2">开机次数</font></td>
<td width="61"><p align="center"><font size="2"><%=rs("开机次数")%></font></td>
<td width="91"><p align="center"><font size="2">工作时间</font></td>
<td><p align="center"><font size="2"><%=rs("工作时间")%>小时</font></td>
</tr>
</table>
</form>
</div>
</body>
</html>
[此贴子已经被作者于2007-5-23 11:15:05编辑过]