Reputation: 1300
Just like in the title. I got GridView control that displaying some data from database. All i want to do is to make GridView displaying rows descending, i mean from the last added to first added. So first row i see from the GridView is displaying the last item added to database instead of added first like is in default state. I hope you understand what i mean ;).
Im pretty sure there is a property for that but i cant find it.
Upvotes: 0
Views: 1002
Reputation: 13600
Don't know about any property for reversing the gridview itself, but you can always reverse the datasource ;) If you're displaying a data from db, include that in your sql/linq query.
Upvotes: 1