错误类型: ADODB.Field (0x80020009) BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。 源程序: <table aling="center" border="1" width="841"> <tr align="center"><td><span class="STYLE10">姓名</span></td> <td><span class="STYLE10">学号</span></td> <td><span class="STYLE10">性别</span></td> <td><span class="STYLE10">年龄</span></td> <td><span class="STYLE10">民族</span></td> <td><span class="STYLE10">入学时间</span></td> <td><span class="STYLE10">毕业时间</span></td> <td><span class="STYLE10">总成绩</span></td> <td><span class="STYLE10">平均分</span></td> <td><span class="STYLE10">排名</span></td> <td><span class="STYLE10">修改</span></td> <td><span class="STYLE10">删除</span></td> </tr> <% if rs.recordcount>0 then do while not rs.eof %> <tr align="center" bgcolor="#E7E7E7"><td><%=rs("xs_user")%> </td><td><%=rs("xs_xh")%> </td><td><%=rs("xs_xb")%> </td><td><%=rs("xs_nl")%> </td><td><%=rs("xs_nz")%> </td><td><%=rs("xs_lxtime")%> </td><td><%=rs("xs_bytime")%> </td><td>总成绩</td><td>平均分</td><td>排名</td><td>修改</td><td><a href="del.asp?id=<%=rs("id")%>"onclick="return confirm('是否确定删除本资料?');">删除</a></td></tr> <% rs.movenext %> <tr align="center"><td><%=rs("xs_user")%> </td><td><%=rs("xs_xh")%> </td><td><%=rs("xs_xb")%> </td><td><%=rs("xs_nl")%></td><td><%=rs("xs_nz")%> </td><td><%=rs("xs_lxtime")%> </td><td><%=rs("xs_bytime")%> </td><td>总成绩</td><td>平均分</td><td>排名</td><td>修改</td><td><a href="del.asp?id=<%=rs("id")%>"onclick="return confirm('是否确定删除本资料?');">删除</a></td></tr> <% loop else response.write("<tr>") response.Write("<td colspan='2'>") response.Write("<center><p> </p><b>对不起,没有找到你想要的记录!<b><p></p><a href='xsqkcx.asp'>继续查询</a></center>") response.write("</td>") response.write("</tr>") %> </table> 请问哪里错了