gridview列ヘッダーは、保護されたvoid GridView1_RowDataBound(object sender、GridViewRowEventArgs e){GridView grid = sender as GridView; DataRowView tableData = e.Row.DataItem as DataRowView;
if (e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[1].Text = System.DateTime.Now.AddMonths(-3).ToString("MMMM") ;
}
}
この特定の列をコードビハインドから並べ替えるにはどうすればよいですか。file.asp
<asp:TemplateField ItemStyle-HorizontalAlign="Left" HeaderStyle-VerticalAlign="Bottom" ItemStyle-Wrap="False">
<ItemTemplate>
<asp:Label ID="lblMonth_1" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
ありがとう。