Data Web Controls
In a repeater control can we achive both sorting and groupin开发者_StackOverflowg together, If possiple plz guide me the way.
If not, what is the best control to obtain just sorting and grouping.
Thank You
There is no built-in data control with grouping and sorting which works out of the box in .net framework. You need to implement sorting and grouping by yourself. As implemented solutions you can look at devexpress gridview or jquery grid plugin.
If you want to implement sorting in repeater control - look at this.
精彩评论