I...Here is the query before showing all records:
SELECT [StatusID], [StatusDate], [StatusTitle], [StatusDesc], [DisplayFlag], [IStatusDesc], [IDisplayFlag] From [dbo].[tblNetworkStatus] where statusdate >= dateadd(dd,-30,getdate()) or statusdate is null order by [StatusDate] desc
II...Then I click the StatusDate column and resort:
SELECT [StatusID], [StatusDate], [StatusTitle], [StatusDesc], [DisplayFlag], [IStatusDesc], [IDisplayFlag] From [dbo].[tblNetworkStatus] where statusdate >= dateadd(dd,-30,getdate()) or statusdate is null order by StatusDate asc
III...Then I click go to page 2:
SELECT [StatusID], [StatusDate], [StatusTitle], [StatusDesc], [DisplayFlag], [IStatusDesc], [IDisplayFlag] From [dbo].[tblNetworkStatus] where statusdate >= dateadd(dd,-30,getdate()) or statusdate is null order by [StatusDate] desc
Notice how the query was reset in step 3. Why wasn't my asc sort kept from step 2?