2个通用的ASP分页方法(数字形式和文字形式)

本人写了2个通用的ASP分页方法,供大家参考!

<%@ Language=VBScript %>
<HTML>
<HEAD>
</HEAD>
<BODY>

<%
dim currentpage   '定义当前页
dim filename     '文件名
Const MaxPerPage=20 '每页显示的记录个数
dim totalnumber   '记录总数
filename="showpages.asp"
totalnumber=200     '设置记录总数为200

if not isempty(request("page")) then
   currentPage=cint(request("page"))
else
   currentPage=1
end if
showpages totalnumber,MaxPerPage,filename
%>
</BODY>
</HTML>
<%'定义分页的函数,以totalnumber,maxperpage,filename作为函数的入口。
function showpages(totalnumber,maxperpage,filename)
   dim n
   if totalnumber mod maxperpage=0 then
    n= totalnumber maxperpage
   else
    n= totalnumber maxperpage+1
   end if
   response.write "<form method=Post action="&filename&">"
   response.write "<p align='center'>记录分页 "
   if CurrentPage<2 then
response.write "<font color='999966'>首页 上一页</font> "
   else
response.write "<a href="&filename&"?page=1>首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&">上一页</a> "
   end if
   if n-currentpage<1 then
response.write "<font color='999966'>下一页 尾页</font>"
   else
response.write "<a href="&filename&"?page="&(CurrentPage+1)
response.write ">下一页</a> <a href="&filename&"?page="&n&">尾页</a>"
   end if
response.write " 页次:<strong><font color=red>"&CurrentPage&"</font>/"&n&"</strong>页  "
response.write " 转到:<input type='text' name='page' size=4 maxlength=10 class=smallInput

value="&currentpage&">"
response.write "<input class=buttonface type='submit'   value=' Goto '   name='cndok'></span></p></form>"
  
end function
%>

第二种--------------------------------------------------------------------------

<%@ Language=VBScript %>
<HTML>
<HEAD>
</HEAD>
<BODY>

<%
dim currentpage   '定义当前页
dim filename     '文件名
Const MaxPerPage=20 '每页显示的记录个数
dim totalnumber   '记录总数
filename="showpages.asp"
totalnumber=200     '设置记录总数为200

if not isempty(request("page")) then
   currentPage=cint(request("page"))
else
   currentPage=1
end if
showpages totalnumber,MaxPerPage,filename
%>
</BODY>
</HTML>
<%'定义分页的函数,以totalnumber,maxperpage,filename作为函数的入口。
function showpages()
dim n
if (totalnumber mod MaxPerPage)=0 then
   n= totalPut MaxPerPage
else
   n= totalPut MaxPerPage + 1
end if
if n=1 then
       exit sub
end if
dim k
response.write "<p align='left'>>> 分页 "
   for k=1 to n
       if k=currentPage then
response.write "[<b>"+Cstr(k)+"</b>] "
else
   response.write "[<b>"+"<a href="&filename&"?page="+cstr(k)+">"+Cstr(k)+"</a></b>] "
       end if
   next
response.write "</p>"
end function
%>

时间: 2024-11-03 02:42:45

2个通用的ASP分页方法(数字形式和文字形式)的相关文章

2个通用的ASP分页方法

分页 本人写了2个通用的ASP分页方法,供大家参考!<%@ Language=VBScript %><HTML><HEAD></HEAD><BODY> <%dim currentpage  '定义当前页dim filename     '文件名Const MaxPerPage=20   '每页显示的记录个数dim totalnumber  '记录总数filename="showpages.asp"totalnumber=

ASP分页

分页 本人写了2个通用的ASP分页方法,供大家参考!<%@ Language=VBScript %><HTML><HEAD></HEAD><BODY> <%dim currentpage  '定义当前页dim filename     '文件名Const MaxPerPage=20   '每页显示的记录个数dim totalnumber  '记录总数filename="showpages.asp"totalnumber=

通用SQL存储过程分页以及asp.net后台调用的方法_Mysql

创建表格并添加300万数据 use Stored CREATE TABLE UserInfo( --创建表 id int IDENTITY(1,1) PRIMARY KEY not null,--添加主键和标识列 UserName varchar(50) ) declare @i int --添加3百万数据,大概4分钟时间 set @i=1 while @i<3000000 begin insert into UserInfo (UserName) values(@i) set @i=@i+1

ASP学习:史上最强的数据分页方法

我观前辈的帖子,皆由于数据库的SQL大不一致,且SQL SERVER,ACCESS等菜鸟级数据库没有如rowid,_n_,obs等之类的辅助列,空有BETWEEN运算符而无用武之地,又无如except之类的数据集运算符,真是令无数英雄尽折腰 偶详观各数据库SQL,得出是数据库就有取前面N条记录的SQL语法,如什么select top n*****之类的语法,而数据分页的关键问题是取后N条记录的语法偶深思良久,最后小悟,故出此言,还忘前辈们多多指点 取记录集后N条记录的大法: 假设: 1.有一sq

asp.net高效的分页方法超大数据量大并且带查询参数

asp教程.net高效的分页方法超大数据量大并且带查询参数 create   Proc [dbo].[GetRS] @QueryStr nvarchar(300),--表名.视图名.查询语句 @PageSize int=10,--每页的大小(行数) @PageCurrent int=1,--要显示的页 @FdShow nvarchar (100)='',--要显示的字段列表,如果查询结果有标识字段,需要指定此值,且不包含标识字段 @FdOrder nvarchar (100)='',--排序字段

asp.net Linq TO Sql 分页方法_实用技巧

分页方法 复制代码 代码如下: /// <summary> /// /// </summary> /// <typeparam name="T"></typeparam> /// <param name="replist">控件ID</param> /// <param name="DataSource">数据源</param> /// <par

用Delphi开发ASP分页组件

分页 由于Delphi在开发数据库应用系统中具有的强大的功能和极高的效率,所以笔者开发ASP组件较常用的是Delphi 5.0(当然也可采用Visual Basic或VC++开发ASP组件),Delphi本身在Internet和InternetExpress两个组件面板提供了众多的组件可以直接生成Web页面,但是这些组件都缺少网页中数据显示常见的分页功能.众所周知,ASP是通过建立ADO连接数据库后建立RecordSet对象,然后利用RecordSet的AbsolutePage进行页面定位,而在

叶子asp分页类_ASP CLASS类

名称: 叶子asp分页类 Name: ShowoPage(vbs class) RCSfile: ReadMe.txt Revision: 0.12.20051114.f Author: Yehe(叶子) Released: 2005-11-14 09:40:13 Descript: ASP分页类,支持access/mssql/mysql/sqlite Contact: QQ:311673 MSN:myehe@msn.com GT:mmyehe@gmail.com WebSite: http:/

ASP分页祥解

分页 关于ASP分页的问题,对于初学者是一个比较重要的问题,也是各个网站运用最为广泛的技术,下面我就把我总结的一点小经验介绍给大家(写的不好,请大家指点)1.原理:ASP分页其实是将数据库中的记录分割成若干段"分屏显示",为什么叫"分屏显示"显示,因为其实显示的原始页面只有1页,通过控制数据库显示,来刷新页面的显示内容(可能一些朋友会误会为动态产生若干页面来显示,呵呵,我刚刚学的时候也是这样以为的)2.用到的几个函数rs.pagesize--->定义一页显示记