I have a dataview which binds to a PagedDataSource object. The data is pulled into the dataview from the db using a stored procedure and the returned data is sorted according to a date field. The stored proc is used in several places in the application and so I cant make any big change in this instance. I just need to disable the sort order which is returned by the stored proc (Without making any change to the stored proc) and apply a new sort.
objPagedDs = New PagedDataSource()
dvFeedback = objCompany.PublishedMonitoringCards.DefaultView
dvFeedback.RowFilter = "EligibleForPrinting = 1"
dvFeedback.Sort = "IncludeInRepReport DESC, Work_dt DESC"
Please find the code above.