Tip: how to change the default sorting direction of the GridView

Source: Internet
Author: User
We know that after creating a sortable GridView, click the column header, and the column will be in a descending order (SortDirection. ASC) sort, and then click this column in the order from large to small (SortDirection. DESC) sorting.
How can this process be reversed, that is, by default, the first sorting is performed in a descending order? Unfortunately, the GridView does not provide anything like DefaultSortDirection for us to set, so we must use the code:

<Asp: GridView runat = "server" id = "GridView1" AllowSorting = "True" OnSorting = "GridView1_Sorting">
</Asp: GridView>

Protected void gridviewinclusorting (object sender, GridViewSortEventArgs e)
{
// Obtain the name of the sorted Field
String field = e. SortExpression. Split ('') [0];
// If this is the first time this field is sorted
If (ViewState ["previussortfield"] as string! = Field)
{
// Change the order from large to small
E. SortExpression = e. SortExpression + "DESC ";
// Record the name of this field (next time it is not the first time)
ViewState ["previussortfield"] = field;
}
}

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.