具體說了這麼多,只貼出相關原始碼~
using System;
使用 System.Collections.Generic;
使用系統文字;
使用系統數據;
使用 System.Data.OleDb;
使用系統.Web;
/**//// <摘要>
/// 名稱:access下的分頁方案(仿sql預存程序)
/// 作者:cncxz(蟲蟲)
/// 部落格: http://cncxz.cnblogs.com
/// </摘要>
公共類 AdoPager
{
受保護的字串 m_ConnString;
受保護的 OleDbConnection m_Conn;
公共 AdoPager()
{
CreateConn(string.Empty);
}
公共 AdoPager(字串 dbPath)
{
創建Conn(dbPath);
}
私人無效CreateConn(字符串dbPath)
{
if (字串.IsNullOrEmpty(dbPath))
{
string str = System.Configuration.ConfigurationManager.AppSettings["dbPath"] 作為字串;
if (字串.IsNullOrEmpty(str))
str = "~/App_Data/db.mdb";
m_ConnString = string.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;資料來源={0}", HttpContext.Current.Server.MapPath(str));
}
別的
m_ConnString = string.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;資料來源={0}", dbPath);
m_Conn = new OleDbConnection(m_ConnString);
}
/**//// <摘要>
///開啟連接
/// </摘要>
公無效ConnOpen()
{
if (m_Conn.State != ConnectionState.Open)
m_Conn.Open();
}
/**//// <摘要>
/// 關閉連接
/// </摘要>
公共無效ConnClose()
{
if (m_Conn.State != ConnectionState.Closed)
m_Conn.Close();
}
private string recordID(string query, int passCount)
{
OleDbCommand cmd = new OleDbCommand(query, m_Conn);
字串結果 = string.Empty;
使用 (IDataReader dr = cmd.ExecuteReader())
{
while (dr.Read())
{
if (passCount < 1)
{
結果 += "," + dr.GetInt32(0);
}
通過次數--;
}
}
返回結果.Substring(1);
}
/**//// <摘要>
/// 取得目前頁面應該顯示的記錄,注意:查詢中必須包含名為ID的自動編號列,如果不符合你的要求,就修改一下來源碼吧:)
/// </摘要>
/// <param name="pageIndex">目前頁碼</param>
/// <param name="pageSize">分頁容量</param>
/// <param name="showString">顯示的欄位</param>
/// <param name="queryString">查詢字串,支援聯合查詢</param>
/// <param name="whereString">查詢條件,若有條件限制則必須以where 開頭</param>
/// <param name="orderString">排序規則</param>
/// <param name="pageCount">傳出參數:總頁數統計</param>
/// <param name="recordCount">傳出參數:總記錄統計</param>
/// <returns>載入記錄的DataTable</returns>
公用DataTable ExecutePager(int pageIndex,int pageSize,字串showString,字串queryString,字串whereString,字串orderString,out int pageCount,out int recordCount)
{
if (pageIndex < 1) pageIndex = 1;
如果(頁面大小 < 1)頁面大小 = 10;
if (string.IsNullOrEmpty(showString)) showString = "*";
if (string.IsNullOrEmpty(orderString)) orderString = "ID 描述";
ConnOpen();
string myVw = string.Format(" ( {0} ) tempVw ", queryString);
OleDbCommand cmdCount = new OleDbCommand(string.Format("從 {0} {1} 選取 count(0) 作為 recordCount", myVw, whereString), m_Conn);
recordCount = Convert.ToInt32(cmdCount.ExecuteScalar());
if ((recordCount % pageSize) > 0)
頁數=記錄數/頁大小+1;
別的
頁數=記錄數/頁大小;
OleDbCommand cmdRecord;
if (pageIndex == 1)//第一頁
{
cmdRecord = new OleDbCommand(string.Format("依{4}順序從{2} {3}選擇頂部{0} {1} ", pageSize, showString, myVw, whereString, orderString), m_Conn);
}
else if (pageIndex > pageCount)//超出總頁數
{
cmdRecord = new OleDbCommand(string.Format("按 {4} 從 {2} {3} 選擇頂部 {0} {1}", pageSize, showString, myVw, "其中 1=2", orderString), m_Conn) ;
}
別的
{
int pageLowerBound = pageSize * pageIndex;
int pageUpperBound = pageLowerBound - pageSize;
string recordIDs = recordID(string.Format("按 {4} 從 {2} {3} 選擇頂部 {0} {1}", pageLowerBound, "ID", myVw, whereString, orderString), pageUpperBound);
cmdRecord = new OleDbCommand(string.Format("從 {1} 中選擇 {0},其中 id 在 ({2}) 中按 {3} 排序", showString, myVw, recordIDs, orderString), m_Conn);
}
OleDbDataAdapter dataAdapter = new OleDbDataAdapter(cmdRecord);
資料表 dt=new 資料表();
dataAdapter.Fill(dt);
ConnClose();
返回dt;
}
}
還有呼叫範例:
html程式碼
<%@ 頁面語言="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" “ http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ”>
<html xmlns=“ http://www.w3.org/1999/xhtml ”>
<頭runat =“伺服器”>
<title>分頁示範</title>
</頭>
<正文>
<form id="form1" runat="伺服器">
<div>
<br/>
到第<asp:TextBox ID="txtPageSize" runat="server" Width="29px">1</asp:TextBox>頁面<asp:Button ID="btnJump" runat="server" Text="Go" OnClick="btnJump_Click" /><br />
<asp:GridView ID="GridView1" runat="伺服器" CellPadding="4" ForeColor="#333333" GridLines="無" 寬度="90%">
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="白色" HorizontalAlign="居中" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="白色"/>
</asp:GridView>
</div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</形式>
</正文>
</html>
範例程式碼隱藏程式碼
使用系統;
使用系統數據;
使用系統配置;
使用系統.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用 System.Collections.Generic;
公共部分類別 _Default :System.Web.UI.Page
{
私有AdoPager mm_Pager;
受保護的 AdoPager m_Pager
{
得到{
如果(mm_Pager === null)
mm_Pager = new AdoPager();
返回mm_Pager;
}
}
protected void Page_Load(物件發送者,EventArgs e)
{
if(!IsPostBack)
載入資料();
}
私有 int pageIndex = 1;
私有 int pageSize = 20;
私有 int pageCount = -1;
私有 int recordCount = -1;
私有無效載入資料()
{
string strQuery = "從 tableTest 選擇 a.*,b.KindText a 左連接 tableKind b on a.KindCode=b.KindCode ";
string strShow = "ID,主題,種類代碼,種類文字";
DataTable dt = m_Pager.ExecutePager(pageIndex, pageSize, strShow, strQuery, "", "ID desc", out pageCount, out recordCount);
GridView1.DataSource = dt;
GridView1.DataBind();
Label1.Text = string.Format("共{0}筆記錄,每頁{1}條,頁次{2}/{3}",recordCount,pageSize,pageIndex,pageCount);
}
protected void btnJump_Click(物件發送者,EventArgs e)
{
int.TryParse(txtPageSize.Text, out pageIndex);
載入資料();
}
}
最後附上工程文件下載網址:http: //cncxz.cnblogs.com/archive/2006/06/28/438050.html