Could any one let me know how to implement sorting on GridView?
A:
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>
Rob
2010-07-27 06:33:20