|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
结论:和PHP一样,ASP简单而易于维护,很适合小型网站应用,通过DCOM和MTS技术,ASP甚至还可以完成小规模的企业应用,但ASP的致命缺点就是不支持跨平台的系统,在大型项目开发和维护上非常困难。显现情势:
ID1NAME|ID2NAME
1JULIET|2PALYBOY
3BABY|4TOM
5LENA|6JERY
>>首页前页后页尾页页数:1/46条/页总纪录数:25条
代码:
<!--page1.asp-->
<!--#includefile="conn.asp"-->
<html>
<bodybgcolor="#FFFFFF"text="#000000">
<tablewidth="60%"border="1"align="center">
<%
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
%>
<p><spanclass=smallFont>>>
<%ifcurrentpage=1then%>
<fontcolor=darkgrayface="arial">TopPrevious</font>
<%else%>
<fontcolor=blackface="arial"><ahref="<%=request.ServerVariables("script_name")%>?page=1">Top</font></a>
 <ahref="<%=request.ServerVariables("script_name")%>?page=<%=currentpage-1%>">
<fontcolor=blackface="arial">Previous</a></font>
<%endif%>
<%ifcurrentpage=nthen%>
<fontcolor=darkgrayface="arial">NextBottom</font>
<%else%>
<fontcolor=blackface="arial"><ahref="<%=request.ServerVariables("script_name")%>?page=<%=currentpage+1%>">Next</a>
 <ahref="<%=request.ServerVariables("script_name")%>?page=<%=n%>">Bottom</a></font>
<%endif%>
<fontcolor=blackface="arial">
 Page:<%=currentpage%>/<%=n%>pages  <%=msg_per_page%>notes/page Total:<%=totalrec%>notes</font></span></p>
<%endsub%>
ASP是依赖组件的,能访问数据库的组件好多就有好多种,再有就是你微软的工具可是什么都要收钱的啊! |
|