• Yet Another Paging Component For Classic ASP

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.

%>

Download Pager - (27 KB)

Run Pager Example

Example Screen Shot

Paging Demo Screenshot
Thanks.

Happy Coding..

Ruchit S.

Leave A Comment!