分页的显示-->前后翻滚10页的实现

分页|显示

<%
set con=server.CreateObject("ADODB.Connection")
strConnection="Data Source=xxxxxxx;"
con.Open strConnection

set rs = Server.CreateObject("ADODB.Recordset")
chartSQL="select ID,name,category_one from goods "
rs.Open chartSQL,con,1,3
if rs.EOF or rs.BOF then '如果为空
response.end
end if
pagesize=10 '每页显示10条记录
pagecuont=rs.PageCount '总页数
recordcount=rs.RecordCount
dim pagenum '当前页码
dim currentRecord '当前页的记录数,对于末页其值不等于pagesize
if Request.QueryString ("pageNum")="" then
pageNum=1
else
pageNum=Request.QueryString ("pageNum")
rs.AbsolutePage =trim(Request.QueryString ("pageNum"))
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<SCRIPT LANGUAGE=javascript>
<!--
function openwindow(url){
window.open(url,'','resizable=no,width=240,height=160,fullscreen=yes')
}
//-->
</SCRIPT>
<link rel="stylesheet" href="file:///F|/mysourceof17560/CSS.CSS" type="text/css">
</head>
<body bgcolor=#999999>
<p align="center">商品修改页面</p>
<table border="1" width="100%" cellpadding="0" cellspacing="0" bordercolordark="#999999" bordercolorlight="#000000">
<tr>
<td width="10%">
<div align="center">编号 </div>
</td>
<td width="63%">
<div align="center">商品名 </div>
</td>
<td width="14%"> 
<div align="center">主分类</div>
</td>
<td width="13%">
<div align="center">操作 </div>
</td>
</tr>
<%
for i=1 to rs.PageSize
if rs.EOF or rs.BOF then '本条件判断是否到了尽头
exit for
end if
%>
<tr>
<td width="10%" align=center><%=rs("ID")%></td>
<td width="63%" align=center><%=rs("name")%> </td>
<td width="14%" align=center><%=rs("category_one")%> </td>
<td width="13%">
<div align="center">
<INPUT type="button" value="Button" id=button1 name=button1
ID")%>&zfenlei=<%=rs("category_one")%>','','resizable=no,width=240,height=160')">
 </div>
</td>
</tr>
<%
currentRecord=currentRecord+1 '取的当前页的记录数
rs.MoveNext
next
rs.Close
%>
</table>
<div align="center" class="bfont">合计<%=recordCount%> 条记录 | 第
<%
pageNum_record=(pageNum-1)*pageSize+1 '初始记录位置
pageNum_record_=pageNum_record+currentRecord-1 '末记录位置
Response.Write pageNum_record
%>
-<%=pageNum_record_%>条 | 第<%=pageNum%>页 |共<%=pagecuont%>页
<%
if pagecuont >0 then '防止当前返回的为空记录,即数据库中该数据集为空
if pageNum > 1 then %>
<a href="modifychart.asp?pageNum=1"> <font color="#FFFFFF">首页</font></a>
<%
else Response.Write "首页"
end if
if pageNum > 10 then
'如有需要,请在这里添上如果不足10页时该实现前n页的代码,
'请参考下面的如果后面不足10页时该怎么样处理的代码和思路
%>
<a href="modifychart.asp?pageNum=<%=(pageNum-10)%>"> <font color="#FFFFFF">前10页</font></a>
<%
end if
if (pageNum+10) < pagecuont then
'这里也相同参考下面的思路
%>
<a href="modifychart.asp?pageNum=<%=(pageNum+10)%>"> <font color="#FFFFFF">下10页</font></a>
<%
end if
if (pageNum+10) < pagecuont then
'这里判断后面是否还有10页
endpage=pageNum+9
else
endpage=pageCount
end if
for i=pageNum to endPage
%>
<a href="modifychart.asp?pageNum=<%=i%>">第<%=i%>页</a>
<%
next
if pageNum <> pageCount then
%>
<a href="modifychart.asp?pageNum=<%=pagecuont%>"> <font color="#FFFFFF">末页</font></a>
<%
end if
end if 'end of --->if pageCount >0 then
%>
</div>
</body>
</html>

时间: 2024-10-31 07:07:11

分页的显示--&gt;前后翻滚10页的实现的相关文章

gridview 分页-gridview模板 显示不了一共几页,当前第几页,首页、上一页...连接都没反应

问题描述 gridview模板 显示不了一共几页,当前第几页,首页.上一页...连接都没反应 //实现分页AllowPaging=""true""//一页数据10行PageSize=""10""// 分页时触发的事件OnPageIndexChanging=""gvwDesignationName_PageIndexChanging""//在服务器事件里protected void gvw

分页只能显示第一页记录看了一天了,没找出错

问题描述 以下是留言板的主页面中对留言进行操作的内容,但是分页不正常,哪位高手指点以下啊<%@language="vbscript"%><%session("currentposition")="留言列表"%><!--#includefile="top.asp"--><%dimrs,conn,currentpage'使用server对象的createobject方法建立一个记录集对象S

ligerui-LigerUI 表格分页查询显示页数不对,源码bug 如何修改

问题描述 LigerUI 表格分页查询显示页数不对,源码bug 如何修改 将usePager置为true,增加查询功能,点击最后一页的箭头按钮,然后再点击查询,在页码栏会显示错误求大牛帮忙解决.此部分是在源码中的 解决方案 http://my.oschina.net/lishixi/blog/87091

java类的问题-java分页只显示第一页,其他也不显示

问题描述 java分页只显示第一页,其他也不显示 java查出来的数据有多页第一页显示,其他页点击什么都不显示了,统计出来的所有数据是对的,但是就是不能查看. 解决方案 慢慢跟,step1: 数据传到后台没 step2: sql可以正确执行么? step3: 执行结果可以正确接收么? step4:传回前端没? step5: js等脚本正确么? 这些问题都会导致你现在的现实问题.最好的办法一步步跟. 解决方案二: 也许是页码传递有问题 解决方案三: 看看后台有没有得到前台传过去的pageNo(当前

php 经典分页 支持上10页下10代码

php 经典分页 支持上10页下10代码  +-------------------------------------------  |  |   Autohr : jimmy  | Email : mailangel123@163.com  |  +-------------------------------------------  */  /*  +-------------------------------------------  + 配置不前页面  +-------------

php 分页代码,支持前10页与后10页分页

php 分页代码,支持前10页与后10页分页 function multLink($currentPage, $totalRecords, $url, $pageSize = 10) {  global $func_message;  if ($totalRecords <= $pageSize) return '';  $mult = '';  $totalPages = ceil($totalRecords / $pageSize);  $mult .= '<div class="

Android分页中显示出下面翻页的导航栏的布局实例代码

当页面条目过多的时候需要分页,要在布局中显示出分页的相关布局,使用android:layout_weight="11" activity_call_safe.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:lay

每隔两分钟就显示数据库里的10条最新数据怎么做

问题描述 每隔两分钟就显示数据库里的10条最新数据怎么做 解决方案 解决方案二:那就每隔10分钟刷新一下页面了解决方案三:数据查询操作放到Timer控件的Tick事件里,每隔两分钟就显示数据库里的10条记录,查询语句里指明求最新追加的10条记录,如有自增的id则,selecttop10*fromtableorderbyiddesc解决方案四:selecttop10*fromtableorderbyiddesc访问数据库写对就OK了其他只要想办法实现定时刷新就可以刷新页面方法很多..整理了一下第一

thinkphp-Thinkphp框架分页怎么显示模版

问题描述 Thinkphp框架分页怎么显示模版 $Ob=M('kehu'); //1.获取记录的总条数,确认每页的条数 $arrOne=$Ob->field("count(*) as count")->find(); $count=$arrOne['count']; $pageSize=5; //2.实例化分页类 , 传入总记录数和每页显示的记录数(5) $pageOb=new ThinkPage($count,$pageSize); //3.调用属性值firstRow,获