查看完整版本: [-- 【求助】ASP,头痛~~~~~~ --]

【 浮游城 - Castle in the Sky | 开放邀请注册,PS|SS|WII|DC下载研究中心 】 -> 【 电脑全方位 | Computer All Round 】 -> 【求助】ASP,头痛~~~~~~ [打印本页] 登录 -> 注册 -> 回复主题 -> 发表主题

sagephage 2005-09-10 21:16

偶朋友一个网页,需要把一页显示不完的内容做分页处理,用的是偶不熟悉的ASP,不知道联盟里面是否有玩ASP的同学帮助一下俺,谢谢:)

ztjal 2005-09-11 00:52
第一次就用ADO来分页吧,以后再学SQL存储过程分页,或者JAVASCRIPT XML分页吧.

下面是ADO的分页例子.
<%

Const pagenum = 5

i=request("page")

Set rs = Server.CreateObject("ADODB.Recordset")
sql = "select * from [表名] order by [什么] desc"
rs.open sql,conn,1,1

rs.pagesize = pagenum '定义每页显示多少条数据,

rs.absolutepage=i '定义当前是第几页,想像力来了吗?

for j=1 to rs.pagesize
response.write(rs("字段"))
rs.movenext
if rs.eof then exit for
next

rs.close
set rs = nothing

%>


查看完整版本: [-- 【求助】ASP,头痛~~~~~~ --] [-- top --]


Powered by PHPWind Code © 2003-08 PHPWind
Gzip enabled

You can contact us