<%
if totalReg > CInt(Application("maxList")) then
dim limInf
limInf=round(20-elementosMos/2) + 1
dim i
i=0
for i=0 to limInf
Response.Write "| | "
next
for i=0 to totalReg/Application("maxList")
if i=page/Application("maxList") then
Response.Write "" & i+1 & " | "
else
Response.Write "" & i+1 & " | "
end if
next
for i=(linInf + elementosMos) to 20
Response.Write " | "
next
end if
%>
|