分享
 
 
 

(C#)DataGrid实现自定义分页,鼠标移至变色,删除确认、可编辑,可删除

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

数据库:SqlServer 2000, 数据源:系统自带的Northwind

操作系统:Window XP 中文版

开发平台:.Net Framework 1.1, C#语言

效果预览:

好了,让我们开始奇异的Datagrid之旅吧:

先在数据库中定义存储过程,轻易实现百万级数据分页:

//@PageSize:分页大小,PageIndex:页号,@PageCount:总页数,@recordCount:记录数

CREATE PROCEDURE GetCustomDataPage @pageSize int, @pageIndex int, @pageCount int output, @recordCount int output AS

declare @SQL varchar(1000)

select @recordCount=count(*) from products

set @pageCount=ceiling(@recordCount*1.0/@pageSize)

if @pageIndex = 0 or @pageCount<=1

set @SQL='select top '+str(@pageSize)+' productID,productName, unitPrice from products order by productID asc'

else if @pageIndex = @pageCount -1

set @SQL='select * from ( select top '+str(@recordCount - @pageSize * @pageIndex)+' productID,productName, unitPrice from products order by productID desc) TempTable order by productID asc'

else set @SQL='select top '+str(@pageSize) +' * from ( select top '+str(@recordCount - @pageSize * @pageIndex)+' productID,productName, unitPrice from products order by productID desc) TempTable order by productID asc'

exec(@SQL)

GO

好了,存储过程建好了,那么如何在.Net中使用呢?请看以下代码:

private uint pageCount; //总页数

private uint recordCount; //总记录数

private DataSet GetPageData(uint pageSize, uint pageIndex)

{

string strConn = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];

SqlConnection conn = new SqlConnection(strConn);

conn.Open();

SqlCommand command = new SqlCommand("GetCustomDataPage",conn); //第一个参数为存储过程名

command.CommandType = CommandType.StoredProcedure; //声明命令类型为存储过程

command.Parameters.Add("@pageSize",SqlDbType.Int);

command.Parameters["@pageSize"].Value = pageSize;

command.Parameters.Add("@pageIndex",SqlDbType.Int);

command.Parameters["@pageIndex"].Value = pageIndex;

command.Parameters.Add("@pageCount",SqlDbType.Int);

command.Parameters["@pageCount"].Value = pageCount;

command.Parameters["@pageCount"].Direction = ParameterDirection.Output; //存储过程中的输出参数

command.Parameters.Add("@recordCount",SqlDbType.Int);

command.Parameters["@recordCount"].Value = recordCount;

command.Parameters["@recordCount"].Direction = ParameterDirection.Output; //存储过程中的输出参数

SqlDataAdapter adapter = new SqlDataAdapter(command);

DataSet ds = new DataSet();

adapter.Fill(ds);

//获得输出参数值

pageCount = Convert.ToUInt32(command.Parameters["@pageCount"].Value);

recordCount = Convert.ToUInt32(command.Parameters["@recordCount"].Value);

conn.Close();

return ds;

}

//绑定数据到DataGrid中

private void BindDataGrid()

{

DataSet ds = GetPageData((uint)dgProduct.PageSize,(uint)dgProduct.CurrentPageIndex);

dgProduct.VirtualItemCount = (int)recordCount;

dgProduct.DataSource = ds;

dgProduct.DataBind();

}

//页面加载时就绑定DataGrid

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

{

if(!Page.IsPostBack)

{

BindDataGrid();

}

}

//用户翻页时事件处理

private void dgProduct_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)

{

dgProduct.CurrentPageIndex = e.NewPageIndex;

BindDataGrid();

}

//用户单击编辑按纽时事件处理

private void dgProduct_EditCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)

{

dgProduct.EditItemIndex = e.Item.ItemIndex;

BindDataGrid();

}

//用户单击取消按纽时事件处理

private void dgProduct_CancelCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)

{

dgProduct.EditItemIndex = -1;

BindDataGrid();

}

//用户单击更新按纽时事件处理

private void dgProduct_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)

{

string strConn = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];

SqlConnection conn = new SqlConnection(strConn);

conn.Open();

//string strSQL = "update from products set productName=@productName, set unitPrice=@unitPrice where productID=@productID";

string strSQL = "update products set productName=@productName where productID=@productID";

SqlCommand command = new SqlCommand(strSQL,conn);

command.Parameters.Add("@productName",SqlDbType.NVarChar,40);

command.Parameters["@productName"].Value = ((TextBox)(e.Item.Cells[1].Controls[0])).Text.Trim();

//command.Parameters.Add("@unitPrice",SqlDbType.Int);

//command.Parameters["@unitPrice"].Value = Convert.ToInt32(((TextBox)(e.Item.Cells[2].Controls[0])).Text.Trim());

command.Parameters.Add("@productID",SqlDbType.Int);

command.Parameters["@productID"].Value = dgProduct.DataKeys[e.Item.ItemIndex];

command.ExecuteNonQuery();

conn.Close();

dgProduct.EditItemIndex = -1;

BindDataGrid();

}

//用户单击删除按纽时事件处理

private void dgProduct_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)

{

string strConn = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];

SqlConnection conn = new SqlConnection(strConn);

conn.Open();

SqlCommand command = new SqlCommand("DeleteProduct",conn);

command.CommandType = CommandType.StoredProcedure;

command.Parameters.Add("@productID",SqlDbType.Int);

command.Parameters["@productID"].Value = dgProduct.DataKeys[e.Item.ItemIndex];

command.ExecuteNonQuery();

BindDataGrid();

}

//实现删除确认及颜色交替显示功能

private void dgProduct_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)

{

if(e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)

{

Button btnDelete = (Button)(e.Item.Cells[4].Controls[0]);

btnDelete.Attributes.Add("onClick","JavaScript:return confirm('确定删除?')");

e.Item.Attributes.Add("onMouseOver","this.style.backgroundColor='#FFCC66'");

e.Item.Attributes.Add("onMouseOut","this.style.backgroundColor='#ffffff'");

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有