分享
 
 
 

DataGrid连接Access的快速分页法(5)——实现快速分页

王朝c#·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

DataGrid连接Access的快速分页法(5)——实现快速分页

我使用Access自带的Northwind中文数据库的“订单明细”表作为例子,不过我在该表添加了一个名为“Id”的字段,数据类型为“自动编号”,并把该表命名为“订单明细表”。

FastPaging_DataSet.aspx

--------------------------------------------------------------------------------------

<%@ Page language="c#" Codebehind="FastPaging_DataSet.aspx.cs" AutoEventWireup="false" Inherits="Paging.FastPaging_DataSet" EnableSessionState="False" enableViewState="True" enableViewStateMac="False" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

<HTML>

<HEAD>

<title>DataGrid + DataReader 自定义分页</title>

<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">

<meta content="C#" name="CODE_LANGUAGE">

<meta content="JavaScript" name="vs_defaultClientScript">

<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">

</HEAD>

<body>

<form runat="server">

<asp:datagrid id="DataGrid1" runat="server" BorderWidth="1px" BorderColor="Black" Font-Size="12pt"

AlternatingItemStyle-BackColor="#eeeeee" HeaderStyle-BackColor="#aaaadd" PagerStyle-HorizontalAlign="Right"

CellPadding="3" AllowPaging="True" AllowCustomPaging="True" AutoGenerateColumns="False" OnPageIndexChanged="MyDataGrid_Page"

PageSize="15" AllowSorting="True" OnSortCommand="DataGrid1_SortCommand">

<AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>

<ItemStyle Font-Size="Smaller" BorderWidth="22px"></ItemStyle>

<HeaderStyle BackColor="#AAAADD"></HeaderStyle>

<Columns>

<asp:BoundColumn DataField="ID" SortExpression="ID" HeaderText="ID"></asp:BoundColumn>

<asp:BoundColumn DataField="订单ID" HeaderText="订单ID"></asp:BoundColumn>

<asp:BoundColumn DataField="产品ID" HeaderText="产品ID"></asp:BoundColumn>

<asp:BoundColumn DataField="单价" HeaderText="单价"></asp:BoundColumn>

<asp:BoundColumn DataField="数量" HeaderText="数量"></asp:BoundColumn>

<asp:BoundColumn DataField="折扣" HeaderText="折扣"></asp:BoundColumn>

</Columns>

<PagerStyle Font-Names="VerDana" Font-Bold="True" HorizontalAlign="Right" ForeColor="Coral"

Mode="NumericPages"></PagerStyle>

</asp:datagrid></form>

</body>

</HTML>

FastPaging_DataSet.aspx.cs

--------------------------------------------------------------------------------------

using System;

using System.Collections;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Web;

using System.Web.SessionState;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.HtmlControls;

using System.Data.OleDb;

using System.Text;

namespace Paging

{

public class FastPaging_DataSet : System.Web.UI.Page

{

protected System.Web.UI.WebControls.DataGrid DataGrid1;

const String QUERY_FIELDS = "*"; //要查询的字段

const String TABLE_NAME = "订单明细表"; //数据表名称

const String PRIMARY_KEY = "ID"; //主键字段

const String DEF_ORDER_TYPE = "ASC"; //默认排序方式

const String SEC_ORDER_TYPE = "DESC"; //可选排序方式

const String CONDITION = "产品ID='AV-CB-1'";

OleDbConnection conn;

OleDbCommand cmd;

OleDbDataAdapter da;

#region 属性

#region CurrentPageIndex

/// <summary>

/// 获取或设置当前页的索引。

/// </summary>

public int CurrentPageIndex

{

get { return (int) ViewState["CurrentPageIndex"]; }

set { ViewState["CurrentPageIndex"] = value; }

}

#endregion

#region OrderType

/// <summary>

/// 获取排序的方式:升序(ASC)或降序(DESC)。

/// </summary>

public String OrderType

{

get {

String orderType = DEF_ORDER_TYPE;

if (ViewState["OrderType"] != null) {

orderType = (String)ViewState["OrderType"];

if (orderType != SEC_ORDER_TYPE)

orderType = DEF_ORDER_TYPE;

}

return orderType;

}

set { ViewState["OrderType"] = value.ToUpper(); }

}

#endregion

#endregion

private void Page_Load(object sender, System.EventArgs e)

{

#region 实现

String strConn = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source="

+ Server.MapPath("Northwind.mdb");

conn = new OleDbConnection(strConn);

cmd = new OleDbCommand("",conn);

da = new OleDbDataAdapter(cmd);

if (!IsPostBack) {

// 设置用于自动计算页数的记录总数

DataGrid1.VirtualItemCount = GetRecordCount(TABLE_NAME);

CurrentPageIndex = 0;

BindDataGrid();

}

#endregion

}

#region Web 窗体设计器生成的代码

override protected void OnInit(EventArgs e)

{

//

// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。

//

InitializeComponent();

base.OnInit(e);

}

/// <summary>

/// 设计器支持所需的方法 - 不要使用代码编辑器修改

/// 此方法的内容。

/// </summary>

private void InitializeComponent()

{

this.Load += new System.EventHandler(this.Page_Load);

}

#endregion

private void BindDataGrid()

{

#region 实现

// 设置当前页的索引

DataGrid1.CurrentPageIndex = CurrentPageIndex;

// 设置数据源

DataGrid1.DataSource = GetDataView();

DataGrid1.DataBind();

#endregion

}

/// <summary>

/// 取得数据库表中的记录总数。

/// </summary>

/// <param name="tableName">数据库中的表的名称。</param>

/// <returns>成功则为表中记录的总数;否则为 -1。</returns>

private int GetRecordCount(string tableName)

{

#region 实现

int count;

cmd.CommandText = "SELECT COUNT(*) AS RecordCount FROM " + tableName;

try {

conn.Open();

count = Convert.ToInt32(cmd.ExecuteScalar());

} catch(Exception ex) {

Response.Write (ex.Message.ToString());

count = -1;

} finally {

conn.Close();

}

return count;

#endregion

}

private DataView GetDataView()

{

#region 实现

int pageSize = DataGrid1.PageSize;

DataSet ds = new DataSet();

DataView dv = null;

cmd.CommandText = FastPaging.Paging(

pageSize,

CurrentPageIndex,

DataGrid1.VirtualItemCount,

TABLE_NAME,

QUERY_FIELDS,

PRIMARY_KEY,

FastPaging.IsAscending(OrderType) );

try {

da.Fill(ds, TABLE_NAME);

dv = ds.Tables[0].DefaultView;

} catch(Exception ex) {

Response.Write (ex.Message.ToString());

}

return dv;

#endregion

}

protected void MyDataGrid_Page(Object sender, DataGridPageChangedEventArgs e)

{

CurrentPageIndex = e.NewPageIndex;

BindDataGrid();

}

protected void DataGrid1_SortCommand(object source, DataGridSortCommandEventArgs e)

{

#region 实现

DataGrid1.CurrentPageIndex = 0;

this.CurrentPageIndex = 0;

if (OrderType == DEF_ORDER_TYPE)

OrderType = SEC_ORDER_TYPE;

else

OrderType = DEF_ORDER_TYPE;

BindDataGrid();

#endregion

}

}

}

我所要介绍的 DataGrid 连接 Access 的快速分页法就到这里了。如果你有其他更好的分页方法,不如也拿出来跟大家分享!

小弟第一次写文章,有说得不对的地方,希望大家指正。

作者:黎波

邮箱:itfun@163.com

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有