专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅

首页 »Asp教程 » asp分页代码:分页代码例子 »正文

asp分页代码:分页代码例子

来源: 发布时间:星期四, 2008年9月25日 浏览:86次 评论:0


<%\'\'本程序文件名为:Pages.asp%>
<%\'\'包含ADO常量表文件adovbs.inc,可从\"\\Program Files\\Common Files\\System\\ADO\"目录下拷贝%>
<!--#Include File=\"adovbs.inc\"-->
<%\'\'*建立数据库连接,这里是Oracle8.05数据库
Set conn=Server.CreateObject(\"ADODB.Connection\")
conn.Open \"Provider=msdaora.1;Data Source=YourSrcName;User ID=YourUserID;Password=YourPassword;\"

Set rs=Server.CreateObject(\"ADODB.Recordset\") \'\'创建Recordset对象
rs.CursorLocation=adUseClient \'\'设定记录集指针属性
\'\'*设定一页内的记录总数,可根据需要进行调整
rs.PageSize=10

\'\'*设置查询语句
StrSQL=\"Select ID,姓名,住址,电话 from 通讯录 Order By ID\"
rs.Open StrSQL,conn,adOpenStatic,adLockReadOnly,adCmdText
%>
<HTML>
<HEAD>
<title>分页示例</title>
<script language=javascript>
//点击\"[第一页]\"时响应:
function PageFirst()
{
document.MyForm.CurrentPage.selectedIndex=0;
document.MyForm.CurrentPage.onchange();
}
//点击\"[上一页]\"时响应:
function PagePrior()
{
document.MyForm.CurrentPage.selectedIndex--;
document.MyForm.CurrentPage.onchange();
}
//点击\"[下一页]\"时响应:
function PageNext()
{
document.MyForm.CurrentPage.selectedIndex++;
document.MyForm.CurrentPage.onchange();
}
//点击\"[最后一页]\"时响应:
function PageLast()
{
document.MyForm.CurrentPage.selectedIndex=document.MyForm.CurrentPage.length-1;
document.MyForm.CurrentPage.onchange();
}
//选择\"第?页\"时响应:
function PageCurrent()
{ //Pages.asp是本程序的文件名
document.MyForm.action=\'Pages.asp?Page=\'+(document.MyForm.CurrentPage.selectedIndex+1)
document.MyForm.submit();
}
</Script>
</HEAD>
<BODY bgcolor=\"#ffffcc\" link=\"#008000\" vlink=\"#008000\" alink=\"#FF0000\"\">

<%IF rs.Eof THEN
Response.Write(\"<font size=2 color=#000080>[数据库中没有记录!]</font>\")
ELSE
\'\'指定当前页码
If Request(\"CurrentPage\")=\"\" Then
rs.AbsolutePage=1
Else
rs.AbsolutePage=CLng(Request(\"CurrentPage\"))
End If

\'\'创建表单MyForm,方法为Get
Response.Write(\"<form method=Get name=MyForm>\")
Response.Write(\"<p align=center><font size=2 color=#008000>\")
\'\'设置翻页超链接
if rs.PageCount=1 then
Response.Write(\"[第一页] [上一页] [下一页] [最后一页] \")
else
if rs.AbsolutePage=1 then
Response.Write(\"[第一页] [上一页] \")
Response.Write(\"[<aPageLast()>最后一页</a>] \")
end if
end if
end if

\'\'创建下拉列表框,用于选择浏览页码
Response.Write(\"第<select size=1 name=CurrentPage _disibledevent=2>\"&Columns(j)&\"</font></td>\")
Next
Response.Write(\"</tr>\")

rs.movenext
if rs.EOF then exit for
Next

Response.Write(\"</table>\")

END IF
%>
</BODY>
</HTML>

如果本文没有解决您的问题,请进老妖怪开发者社区提问

相关文章

读者评论

  • 共0条 分0页

发表评论

  • 昵称:
  • 内容: