asp又一个分页的代码例子
Pages.asp
```asp
<%
' 此程序名为Pages.asp,用于展示分页功能
' 包含ADO常量表文件adovbsc,确保从正确的路径导入(路径已隐藏)
Include File="adovbsc"
' 与数据库建立连接,这里使用的是Oracle 8.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 ' 设置每页的记录总数为10条
StrSQL = "Select ID, 姓名, 住址, 电话 from 通讯录 Order By ID" ' 设置查询语句
rs.Open StrSQL, conn, adOpenStatic, adLockReadOnly, adCmdText
%>
// 分页控制函数部分开始
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();
```html
If Request("CurrentPage") == "" Then
rs.AbsolutePage = 1
Else
rs.AbsolutePage = CLong(Request("CurrentPage"))
End If
<%= Columns(i).name %> |
上一篇:获取字符中中文首字字符
下一篇:没有了
编程语言
|