<< Prev
<%
Pnum_counter = 0
For i = 1 to rsGlossary_total Step MM_size
Pnum_counter = Pnum_counter + 1
Pnum_PageEndCount = i + MM_size - 1
if Pnum_PageEndCount > rsGlossary_total Then Pnum_PageEndCount = rsGlossary_total
if i <> MM_offset + 1 then
Response.Write("
")
Response.Write(Pnum_counter & "")
else
Response.Write("
" & Pnum_counter & "")
End if
if(Pnum_PageEndCount <> rsGlossary_total) then Response.Write("|")
next
%>
Next >>