exec="select * from textlist"
    rs.open exec,conn,1,3
  dim i
  i=1
do while i<=19%>
  <tr>
    <td><%=i%>.<%
if not rs.eof then
response.Write(rs("title1"))
rs.movenext
end if
i=i+1%></td>
    <td></td>
  </tr>
  <%loop%>

这样读取记录。表格第一行为空,第一条记录却在第二行表格了。这是怎么回事啊。