Click the column header sorting function of the GridView in ASP.

Source: Internet
Author: User
/// <Summary>
/// Obtain the sorting method (forward/reverse)
/// </Summary>
Public SortDirection gridviewsortction ction
{
Get
{
If (ViewState ["sortDirection"] = null)
ViewState ["sortDirection"] = SortDirection. Ascending;
Return (SortDirection) ViewState ["sortDirection"];
}
Set {ViewState ["sortDirection"] = value ;}
}
 
/// <Summary>
/// Sort
/// </Summary>
/// <Param name = "sortExpression"> column header </param>
/// <Param name = "direction"> direction </param>
Private void SortGridView (string sortExpression, string direction)
{
// You can cache the DataTable for improving performance
DataView dv = (DataView) CreateDataSource ();
Dv. Sort = sortExpression + direction;
GridView1.DataSource = dv;
GridView1.DataBind ();
}
 
Protected void maid (object sender, GridViewSortEventArgs e)
{
String sortExpression = e. SortExpression;
If (gridviewsortction ction = SortDirection. Ascending)
{
Gridviewsortction ction = SortDirection. Descending;
SortGridView (sortExpression, "DESC ");
}
Else
{
Gridviewsortction ction = SortDirection. Ascending;
SortGridView (sortExpression, "ASC ");
}
}
 
/// <Summary>
/// Create the data of the GridView
/// </Summary>
ICollection CreateDataSource ()
{
DataTable dt = new DataTable ();
DataRow dr;
Dt. Columns. Add (new DataColumn ("id", typeof (Int32 )));
Dt. Columns. Add (new DataColumn ("text", typeof (string )));
For (int I = 0; I <6; I ++)
{
Dr = dt. NewRow ();
Dr [0] = I;
Dr [1] = "list project" + I. ToString ();
Dt. Rows. Add (dr );
}
DataView dv = new DataView (dt );
Return d
}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.