| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 491 人关注过本帖
标题:关于编程
只看楼主 加入收藏
ANNLE
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2005-8-5
收藏
 问题点数:0 回复次数:4 
关于编程

以下有几行,我不是很懂是什么意思,好心的GG AND JJ 帮我解释下

<% const MaxPerPage=20 dim totalPut dim CurrentPage dim TotalPages dim i,j

if not isempty(request("page")) then currentPage=cint(request("page")) else currentPage=1 end if

%>

html 显示部分

<% dim sql dim rs sql="select * from learning order by articleid desc" Set rs= Server.CreateObject("ADODB.Recordset") rs.open sql,conn,1,1 if rs.eof and rs.bof then response.write "<p align='center'> 还 没 有 任 何 信 息</p>" else totalPut=rs.recordcount (这里我不是很懂,为什么一样的要写两行) totalPut=rs.recordcount if currentpage<1 then currentpage=1 end if if (currentpage-1)*MaxPerPage>totalput then(为什么要currentpage-1,而不用currentpage) if (totalPut mod MaxPerPage)=0 then currentpage= totalPut \ MaxPerPage else currentpage= totalPut \ MaxPerPage + 1 end if

end if if currentPage=1 then showpages showContent showpages else if (currentPage-1)*MaxPerPage<totalPut then rs.move (currentPage-1)*MaxPerPage (这句话是什么意思?) dim bookmark bookmark=rs.bookmark (这句话是什么意思?) showpages showContent showpages else currentPage=1 showpages showContent showpages end if end if rs.close end if set rs=nothing conn.close set conn=nothing

sub showContent dim i i=0 %>

2005-08-10 19:38
酷酷的鱼
Rank: 1
等 级:新手上路
威 望:1
帖 子:472
专家分:0
注 册:2005-8-9
收藏
得分:0 
好像是关于页面显示的问题

2005-08-11 10:10
rainic
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:2367
专家分:0
注 册:2005-8-9
收藏
得分:0 
这是分页吧。
(这里我不是很懂,为什么一样的要写两行)多写了呗
(为什么要currentpage-1,而不用currentpage) 这个我说不清楚,你仔细看看吧,那是计算游标的。
rs.move  (currentPage-1)*MaxPerPage    (这句话是什么意思?) 把RS移到第(currentPage-1)*MaxPerPage条记录
 bookmark=rs.bookmark  (这句话是什么意思?)这个不清楚

2005-08-12 20:54
rainic
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:2367
专家分:0
注 册:2005-8-9
收藏
得分:0 
楼主的代码我觉得不能运行吧

2005-08-12 20:56
happyfish
Rank: 1
等 级:新手上路
帖 子:34
专家分:0
注 册:2005-8-12
收藏
得分:0 
bookmark=rs.bookmark  
记录当前书签

2005-08-13 17:06
快速回复:关于编程
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023140 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved