Manoj Wadhwani
Manoj Wadhwani

Reputation: 1547

Sorting in GridView

Could any one let me know how to implement sorting on GridView?

Upvotes: 1

Views: 440

Answers (1)

Rob
Rob

Reputation: 45771

I've just had a look at some code I wrote a while ago that allows sorting on an <asp:GridView> and it would appear all I did was added AllowSorting="True" to the GridView tag and then SortExpresssion="expression" to the Column, for example:

<asp:TemplateField HeaderText="Status" ItemStyle-HorizontalAlign="Center" SortExpression="StatusId">
    <HeaderStyle BorderColor="#1A3491" Width="130px"></HeaderStyle>
    <ItemStyle Height="20px" HorizontalAlign="Center"></ItemStyle>
    <ItemTemplate>
        <%# (int)Eval("StatusId") %>
    </ItemTemplate>
</asp:TemplateField>

Upvotes: 2

Related Questions