Hi Expert,
I have a ASP page display customer record, I use html table to display each record inside a for loop.
the code fragment is here.
For i = 0 To Totalcounter - 1
strTable = strTable & "<tr>"
strTable = strTable & "<td class='bodytext'>" & CompanyName& "</td>"
............
next
lbReport.Text = strTable
My question is how I can use "next" " last" to paging this page if I want dispaly 20 record in each page. Is there a standard way?
Thanks in advance.
Start Free Trial