Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6250473
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:25:53+00:00 2026-05-24T13:25:53+00:00

How to apply basic sorting in the gridview? Below is the gridview code. <asp:TemplateField

  • 0

How to apply basic sorting in the gridview? Below is the gridview code.

<asp:TemplateField SortExpression="Sample1">             
                         <HeaderTemplate SortExpression="Sample1">
                                 <asp:Literal ID="litSample1" runat="server" Text="<%$ Resources:Resource, gvColSample1 %>"></asp:Literal>
                                    <asp:DropDownList ID="ddlSample1" runat="server" OnSelectedIndexChanged="SelectionChanged" AutoPostBack="true" CssClass="dropdownS" AppendDataBoundItems="true">
                                   <asp:ListItem Text=" " Value="-1"></asp:ListItem>
                                   <asp:ListItem Text="ALL" Value="ALL"></asp:ListItem>
                                    </asp:DropDownList>
                         </HeaderTemplate>      
                            <ItemTemplate>
                                <%# Eval("RowSample1") %>
                            </ItemTemplate>   
                        </asp:TemplateField>

As you can see the header template contains a literal. So how to apply sorting? will the addition of literal make a difference in applying sorting?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T13:25:53+00:00Added an answer on May 24, 2026 at 1:25 pm

    Use sort expression with template field and use the following code for sorting. ITs working perfectly fine for me.

    protected void gvTool_Sorting(object sender, GridViewSortEventArgs e)
    {
        if (ViewState["sortMode"] == null)
        {
            ViewState["sortMode"] = SORT_DESC;
        }
        if (ViewState["sortMode"] != null)
        {
            if (Convert.ToString(ViewState["sortMode"]).Trim().Equals(SORT_ASC))
            {
                ViewState["sortMode"] = SORT_DESC;
            }
            else
            {
                ViewState["sortMode"] = SORT_ASC;
            }
        }
    
        string sortexpr = e.SortExpression;
        ViewState["sortexpr"] = e.SortExpression;
        sort();
    }
    
    protected void sort()
    {
        if (ViewState["sortexpr"] != null)
        {
            DataView dvTool = default(DataView);
            DataTable dtTool = new DataTable();
            dtTool = (DataTable)ViewState["dtTool"];
    
            if ((dtTool != null))
            {
                if (dtTool.Rows.Count > 0)
                {
                    dvTool = dtTool.DefaultView;
                    dvTool.Sort = ViewState["sortexpr"].ToString().Trim() + " " + ViewState["sortMode"];
                    gvTool.DataSource = dvTool;
                    gvTool.DataBind();
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do I apply the MarshalAsAttribute to the return type of the code below?
I'm writing a very basic WPF dialog and want to apply a simple style
I am trying to apply the ASIHTTPRequest wrapper to a very basic Objective C
Is there any way to apply an attribute to a model file in ASP.NET
so im trying to apply a basic on click show hide element but for
I am working on grails project where I need to apply server side validations.
I have setup some basic code that triggers on focus of various input fields:
I'm trying to learn how to apply basic object oriented concepts to Javascript. Here,
I have code like below to perform some conditional validation on fields in my
I have a basic calculation function that I apply on each item in an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.