我有一个asp页面的问题。它应该显示正确的记录数。如果我有从键盘输入的2条记录,它告诉我我有5条记录,这是不正确的因为我只有2条。我搜查了实习生但我无法得到任何结果。 这是我认为它包含问题的相关代码:
'Sample Database Connection Syntax for ASP and SQL Server.
dim strSQLOffer
dim cmdET, rstInfo
strSQLOffer = "SELECT * FROM CHUNK_CONFIG"
OpenConnection
set rstInfo=Server.CreateObject("ADODB.Recordset")
'Response.Write(strSQLOffer)
rstInfo.Open strSQLOffer, con
dim intPageCount
intPageCount = rstInfo.PageCount
Do until rstInfo.EOF %>
<tr align="center" valign="top">
<td><a href="Manage_chunks.asp?id=<% Response.Write(rstInfo("Id")) %>"><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("Id")) %></font></a></td>
<td><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("OfferId")) %></font></td>
<td><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("PricingItemId")) %></font></td>
<td><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("ChunkNameRO")) %></font></td>
<td><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("ChunkNameENG")) %></font></td>
<td><font class="LABELB12" color="#FF0000"><% Response.Write(rstInfo("ChunkLimit")) %></font></td>
<td><a href="Manage_Chunks.asp?iddel=<% Response.Write(rstInfo("Id")) %>">Remove</td>
<%rstInfo.MoveNext
Loop
rstInfo.Close
'Response.Write (intPageCount & " records found")
CloseConnection%>
</table><br>
我认为这一行存在问题: &#39; Response.Write(intPageCount&amp;&#34;找到的记录&#34;) 它应该显示我输入了多少条记录......不是2,3,5或类似的东西。你能帮帮我吗?