以下に .NET DataGrid がありますが、列はソートされません。たとえば、並べ替えは次のようになります
10 100 21 DataFormatString="{0:N0} が設定されていても、並べ替えは機能しません。助けてください。
<asp:DataGrid ID="StatusGrid" CssClass="StatusGrid" runat="server" AutoGenerateColumns="false"
UseAccessibleHeader="true" OnItemDataBound="StatusGrid_ItemDataBound" OnItemCommand="StatusGrid_ItemCommand">
<Columns>
ItemStyle-HorizontalAlign="Left" />
<asp:BoundColumn DataField="Rating" HeaderText="Performance Rating" ItemStyle-Width="110px"
ItemStyle-HorizontalAlign="Left" DataFormatString="{0:N0}"/>
</Columns>