Tengo un codigo desarrollado son aspmaker , anda bien , pero no se por que cuando le pongo que me muestre los registros me pone
1 de 292
Cuando en realidad la base tiene 5800 registros , les pongo parte del codigo a ver que puede ser
%>
<form action="expedienteslistusuarios.asp" name="ewpagerform" id="ewpagerform">
<table bgcolor="" border="0" cellspacing="1" cellpadding="4" bgcolor="#CCCCCC">
<tr>
<td nowrap> <div align="center">
<%
If nTotalRecs > 0 Then
rsEof = (nTotalRecs < (nStartRec + nDisplayRecs))
PrevStart = nStartRec - nDisplayRecs
If PrevStart < 1 Then PrevStart = 1
NextStart = nStartRec + nDisplayRecs
If NextStart > nTotalRecs Then NextStart = nStartRec
LastStart = ((nTotalRecs-1)\nDisplayRecs)*nDisplayRecs+1
%>
<table width="266" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><span class="aspmaker">Pagina </span></td>
<!--first page button-->
<% If CLng(nStartRec)=1 Then %>
<td><img src="images/firstdisab.gif" alt="First" width="16" height="16" border="0"></td>
<% Else %>
<td><a href="expedienteslistusuarios.asp?start=1"><img src="images/first.gif" alt="First" width="16" height="16" border="0"></a></td>
<% End If %>
<!--previous page button-->
<% If CLng(PrevStart) = CLng(nStartRec) Then %>
<td><img src="images/prevdisab.gif" alt="Previous" width="16" height="16" border="0"></td>
<% Else %>
<td><a href="expedienteslistusuarios.asp?start=<%=PrevSta rt%>"><img src="images/prev.gif" alt="Previous" width="16" height="16" border="0"></a></td>
<% End If %>
<!--current page number-->
<td><input type="text" name="pageno" value="<%=(nStartRec-1)\nDisplayRecs+1%>" size="4"></td>
<!--next page button-->
<% If CLng(NextStart) = CLng(nStartRec) Then %>
<td><img src="images/nextdisab.gif" alt="Next" width="16" height="16" border="0"></td>
<% Else %>
<td><a href="expedienteslistusuarios.asp?start=<%=NextSta rt%>"><img src="images/next.gif" alt="Next" width="16" height="16" border="0"></a></td>
<% End If %>
<!--last page button-->
<% If CLng(LastStart) = CLng(nStartRec) Then %>
<td><img src="images/lastdisab.gif" alt="Last" width="16" height="16" border="0"></td>
<% Else %>
<td><a href="expedienteslistusuarios.asp?start=<%=LastSta rt%>"><img src="images/last.gif" alt="Last" width="16" height="16" border="0"></a></td>
<% End If %>
<td><span class="aspmaker"> de<%=(nTotalRecs-1)\nDisplayRecs+1%></span></td>
</tr>
</table>
</div>
<div align="center">
<% If CLng(nStartRec) > CLng(nTotalRecs) Then nStartRec = nTotalRecs
nStopRec = nStartRec + nDisplayRecs - 1
nRecCount = nTotalRecs - 1
If rsEOF Then nRecCount = nTotalRecs
If nStopRec > nRecCount Then nStopRec = nRecCount %>
<span class="aspmaker">Archivos de<%= nStartRec %> a<%= nStopRec %> de un total de<%= nTotalRecs %></span>
<% Else %>
Archivo no encontrado
<% End If %>
</div></td>
</tr>
</table>
</form>
<!--#include file="footer.asp"-->
<%
Esta es exactamente la linea que me muestra la cantidad de registros
<input type="text" name="pageno" value="<%=(nStartRec-1)\nDisplayRecs+1%>" size="4">
ahora por que 292 ???????????????????????????????