Is there any ASP view that has paging like listview and sorting like dataview?
I was trying to avoid the implementation of one of those two manually.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GridView automatically implements these two abilities. Make sure the
AllowSortingandAllowPagingproperties are set to true. If you’re using a sqlDataSource or objectDataSource the functionality is automatically taken care for your.GridView AllowPaging property description
GridView AllowSorting property description
By default the GridView displays 10 records at a time but you can change that by setting the
PageSizeproperty.