|
<%
if currentPage=1 then
MaxPerPage=16
showContent
showpage strFileName,totalput,MaxPerPage,true,false,"个产品"
else
if (currentPage-1)*16<totalPut then
MaxPerPage=16
rs.move (currentPage-1)*16
dim bookmark
bookmark=rs.bookmark
showContent
showpage strFileName,totalput,MaxPerPage,true,false,"个产品"
else
currentPage=1
MaxPerPage=16
showContent
showpage strFileName,totalput,MaxPerPage,true,false,"个产品"
end if
end if
end if |
|