Aug
10
I had developed this Paging Component for Classic ASP/ASP 3.0 few years back. Click here to see working example of my paging component. You are free to download and use in your classic ASP application the way you want. You can also modify the code but just put a link back to this blog for credits in source.
Download Pager Source With Example - (27 KB)
usage
<%
Dim MPager
set MPager = New Pager
MPager.Script_Name = "PagingDemo.asp"
MPager.Total_Items = rs_country.recordcount
MPager.PageSize = rows*cols
MPager.Style = "class=""displaylist"""
MPager.HStyle = "class=""blackspace"""
MPager.Synchronize
MPager.DisplayAll
' Check out Source for Comments and examples.
%>
Example Screen Shot
Happy Coding..
Ruchit S.


Leave A Comment!