标题:[求助]asp自动分页问题??
取消只看楼主
35maoe
Rank: 1
等 级:新手上路
帖 子:341
专家分:0
注 册:2006-8-28
结帖率:100%
 问题点数:0 回复次数:1 
[求助]asp自动分页问题??

asp自动分页应该如何写??下面的要根据换行来判断不行,因为内容多数都是自动换行,如果根据字符多少来判断怎么写的??

dim page,pagecount,thispage,linenum,allline

const pageline=10
linenum=split(content,"<br>")
allline=ubound(linenum)+1
pagecount=int(allline\pageline)+1
page=request("page")
if isempty(page) then
thispage=1
else
thispage=cint(page)
end if
for i=0 to allline
if i+1>thispage*pageline-pageline and i<thispage*pageline then
response.write linenum(i) &"<br>"
end if
next
for i=1 to pagecount
if thispage=i then
response.write i & " "
else
response.write "<a href='?page="&i&"&zixunid="&zixunid&"'>"&i&"</a> "
end if
next

搜索更多相关主题的帖子: asp 自动 
2006-10-05 16:07
35maoe
Rank: 1
等 级:新手上路
帖 子:341
专家分:0
注 册:2006-8-28
得分:0 
已解决,谢谢!!

2006-10-05 16:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-94344-1-1.html




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

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