|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。显现情势:
ID1NAME|ID2NAME
1JULIET|2SPIRIT
3BABY|4BOY
[1][2][3][4]页数:1/4页4条/页总纪录数:13条
代码:
<!--page2.asp-->
<!--#includefile="conn.asp"-->
<html>
<bodybgcolor="#FFFFFF"text="#000000">
<tablewidth="60%"border="1"align="center">
<%是有两列的分页(1,2,3,4的情势)。数据表:page,字段:id,testname
dimrs
dimsql
msg_per_page=4界说每页显现纪录条数
setrs=server.createobject("adodb.recordset")
sql="select*frompageorderbyid"改成你本人的SQL语句
rs.cursorlocation=3利用客户端游标,可使效力进步
rs.pagesize=msg_per_page界说分页纪录集每页显现纪录数
rs.opensql,conn,0,1
iferr.number0then毛病处置
response.write"数据库操纵失利:"&err.description
err.clear
else
ifnot(rs.eofandrs.bof)then检测纪录集是不是为空
totalrec=RS.RecordCounttotalrec:总纪录条数
ifrs.recordcountmodmsg_per_page=0then盘算总页数,recordcount:数据的总纪录数
n=rs.recordcountmsg_per_pagen:总页数
else
n=rs.recordcountmsg_per_page+1
endif
currentpage=request("page")currentpage:以后页
Ifcurrentpage""then
currentpage=cint(currentpage)
ifcurrentpage<1then
currentpage=1
endif
iferr.number0then
err.clear
currentpage=1
endif
else
currentpage=1
Endif
ifcurrentpage*msg_per_page>totalrecandnot((currentpage-1)*msg_per_page<totalrec)then
currentPage=1
endif
rs.absolutepage=currentpageabsolutepage:设置指针指向某页开首
rowcount=rs.pagesizepagesize:设置每页的数据纪录数
dimi
dimk
%>
<tralign="center"valign="middle">
<tdwidth="25%">ID1</td>
<tdwidth="25%">name1</td>
<tdwidth="25%">ID2</td>
<tdwidth="25%">name2</td>
</tr>
<%dowhilenotrs.eofandrowcount>0%>
<tralign="center"valign="middle">
<tdwidth="25%"><%=rs("id")%></td>
<tdwidth="25%"><%=rs("testname")%></td>
<td>
<%
rowcount=rowcount-1
rs.MoveNext
ifnotrs.EOFthen
%>
<%=rs("id")%>
</td>
<tdwidth="25%"><%=rs("testname")%></td>
</tr>
<%
rowcount=rowcount-1
rs.MoveNext
else
Response.Write"</td><td></td></tr>"
endif
loop
endif
endif
rs.close
setrs=nothing
%>
</table>
<tableborder="0"align="center">
<tr>
<tdalign="center"valign="middle">
<%calllistPages()%>
</td>
</tr>
</table>
</body>
</html>
<%
sublistPages()
ifn<=1thenexitsub
fori=0tonmsg_per_page-1
forj=1tomsg_per_page
%>
<fontsize="2"color="#006600">
<ahref="<%=request.ServerVariables("script_name")%>?page=<%=i*msg_per_page+j%>">[<%=i*msg_per_page+j%>]</a></font>
<%
next
next
EndPage=nmodmsg_per_page
forj=1toEndPage
%>
<fontsize="2"color="#006600">
<ahref="<%=request.ServerVariables("script_name")%>?page=<%=i*msg_per_page+j%>">[<%=i*msg_per_page+j%>]</a></font>
<%next%>
<fontcolor=blackface="arial">
 Page:<%=currentpage%>/<%=n%>pages  <%=msg_per_page%>notes/page Total:<%=totalrec%>notes</font>
<%endsub%>
实现规模效益。与传统的用户拥有硬件软件所有权和使用权以及传统的应用服务商提供一对一的服务模式不同,ASP拥有应用系统所有权,用户拥有使用权,应用系统集中放在ASP的数据中心中,集中管理,分散使用,以一对多的租赁的形式为众多用户提供有品质保证的应用技术服务,实现规模效益。 |
|