ASPXコード。ASP.NET Gridviewコントロールの列のソートを有効にする方法
<asp:GridView ID="gidtest" runat="server" AutoGenerateColumns="False" BackColor="White"
BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px" CellPadding="4" Width="100%"
AllowPaging="True" **AllowSorting="True"**
OnPageIndexChanging="gidtest_PageIndexChanging">
<Columns>
<asp:BoundField DataField="MinistryName" HeaderText="Name" SortExpression="Ministry Name"
ItemStyle-Width="40%" >
<ItemStyle Width="40%"></ItemStyle>
</asp:BoundField>
</Columns>
<FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC" />
<PagerStyle BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center" />
<PagerSettings FirstPageText="first" LastPageText="last" Mode="NumericFirstLast" PageButtonCount="2"/>
<RowStyle BackColor="White" ForeColor="#330099" />
<SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
<SortedAscendingCellStyle BackColor="#FEFCEB" />
<SortedAscendingHeaderStyle BackColor="#AF0101" />
<SortedDescendingCellStyle BackColor="#F6F0C0" />
<SortedDescendingHeaderStyle BackColor="#7E0000" />
</asp:GridView>
SORTEXpressionが動作していない、この
あなたがこれを読みました。 webcontrols.gridview.allowsorting.aspx – Arion