分享
 
 
 

(ASP.NET)用动态属性和DataView实现DataGrid的双向排序

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

DataGrid是ASP.NET中非常重要的一个控件。它能方便的让我们实现编辑、排序功能;但是排序功能默认的是升序(ASC),能不能让DataGrid同时实现升降序排列呢?这篇文章将给你一个比较好的解决方法。

下面的例子将告诉你如何给DataGrid动态添加sortexpression 和 sortdirection 属性,并通过DataView使DataGird中的数据按照这两个属性排列。在这个例子中使用的DataGrid的sortexpression属性只需要在sortcommand事件中设置(和通常的排序一样),DataGrid的sortexpression 属性保存了最后一次用来排序的字段名称,DataGrid的sortdirection 属性保存了最后一次用来排序的字段排列方式(“ASC”或者“DESC”)

页面设计:

1. 在页面上添加一个DataGrid;

2. 设置DataGrid的AllowSorting属性为True;

3. 设置AutogenerateColumns 属性为False;

4. 添加要绑定的字段到DataGrid,并按照下表设置其属性。Sortexpression属性和数据库中数据表中的字段名保持一致。

我使用Northwind数据库中的Employees来说明这个例子。

DataTextField

Header Text

Sort Expression

EmployeeID

Employee ID

EmployeeID

LastName

Last Name

LastName

FirstName

First Name

FirstName

Title

Title

Title

City

City

City

Country

Country

Country

程序代码设计:

1. 在页面第一次被加载时给DATAGRID添加动态属性sortexpression 和 sortdirection;

2. 给指定的字段的sortexpression 和 sortdirection 赋值,在加载时初始化DataGrid的排序字段和排序方式;

3. 得到dataset 和 dataview 对象。设置dataview 的sort 属性为动态属性sortexpression 和 sortdirection的连接字符串;

4. 用dataview绑定datagrid;

5. 当表头被点击时,触发datagrid的sortcommand事件;

6. 得到sortcommand事件传递过来的sortexpression属性,并与datagrid的sortexpression属性比较;

7. 如果找到相等的

a) 先检查sortdirection属性;

b) If sortdirection属性等于“ASC”then

i. 设置sortdirection属性的值等于“DESC”

c) Else

i. 设置sortdirection属性的值等于“ASC”

d) End If

8. 重复第3步

注意:当你运行下面的代码并点击同一列两次或者两次以上,此列的排列方式会自动根据现有的排列方式的反序排列。

下面的下面的代码将给你演示怎么使用DataGrid的动态属性和DataView对象。

C# Code:

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

{

// 在此处放置用户代码以初始化页面

if(!Page.IsPostBack)

{

if(DataGrid1.Attributes["SortExpression"] == null)

{

DataGrid1.Attributes["SortExpression"] = "LastName";

DataGrid1.Attributes["SortDirection"] = "ASC";

}

BindGrid();

}

}

private void BindGrid()

{

SqlConnection conn = new SqlConnection("server=localhost;uid=sa;pwd=sa;database=Northwind");

conn.Open();

SqlDataAdapter cmd = new SqlDataAdapter("select * from Employees",conn);

DataSet ds = new DataSet();

cmd.Fill(ds,"Employees");

DataView dv = new DataView();

dv = ds.Tables[0].DefaultView;

string SortExpression = DataGrid1.Attributes["SortExpression"];

string SortDirection = DataGrid1.Attributes["SortDirection"];

dv.Sort = SortExpression + " " + SortDirection;

DataGrid1.DataSource = dv;

DataGrid1.DataBind();

}

private void DataGrid1_SortCommand(object source, System.Web.UI.WebControls.DataGridSortCommandEventArgs e)

{

string SortExpression = e.SortExpression.ToString();

string SortDirection = "ASC";

if(SortExpression == DataGrid1.Attributes["SortExpression"])

{

SortDirection = (DataGrid1.Attributes["SortDirection"].ToString() == SortDirection ? "DESC" : "ASC");

}

DataGrid1.Attributes["SortExpression"] = SortExpression;

DataGrid1.Attributes["SortDirection"] = SortDirection;

BindGrid();

}

VB.Net Code:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

'Put user code to initialize the page here

If Not Page.IsPostBack Then

If DataGrid1.Attributes("SortExpression") Is Nothing Then

DataGrid1.Attributes("SortExpression") = "LastName"

DataGrid1.Attributes("SortDirection") = "ASC"

End If

BindDataGrid()

End If

End Sub

Private Sub BindDataGrid()

Dim cn As SqlConnection

Dim cmdSelect As SqlCommand

Cn = New SqlConnection("Server=amandrek;UID=sa;PWD=;Database=Northwind")

Dim strSQL As String = "Select * From employees"

Dim da As New SqlDataAdapter(strSQL, cn)

Dim ds As New DataSet()

da.Fill(ds, "Table1")

Dim dv As DataView = ds.Tables(0).DefaultView

Dim SortExpression As String = DataGrid1.Attributes("SortExpression")

Dim SortDirection As String = DataGrid1.Attributes("SortDirection")

dv.Sort = SortExpression + " " + SortDirection

DataGrid1.DataSource = dv

DataGrid1.DataBind()

cn.Close()

End Sub

Private Sub DataGrid1_SortCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridSortCommandEventArgs) Handles DataGrid1.SortCommand

Dim SortExpression As String = e.SortExpression

Dim SortDirection As String = "ASC"

If SortExpression.Equals(DataGrid1.Attributes("SortExpression").ToString()) Then

If DataGrid1.Attributes("SortDirection").ToString().StartsWith("ASC") Then

SortDirection = "DESC"

Else

SortDirection = "ASC"

End If

End If

DataGrid1.Attributes("SortExpression") = SortExpression

DataGrid1.Attributes("SortDirection") = SortDirection

BindDataGrid()

End Sub

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