I have a gridiview on a page which populates data from a data source. It has a date column in it.While populating the data itself, I want the data in the gridview to be sorted in the descending order of date.Please let me know is it possible?
ASP.NET
Last Comment
ravi_computer
8/22/2022 - Mon
QPR
can you not specify this in your datasource?
select stuff, datefield
from myTable
order by datefield desc
select stuff, datefield
from myTable
order by datefield desc