What I can use instead of GridView?
What I can use instead of gridview or how can I speed up loading? How to build something like stackoverflow 开发者_开发问答using for showing data? Is anyone has example with code source?
StackOverflow uses ASP.NET MVC, not ASP.NET. If you use ASP.NET MVC, you can use a simple foreach
loop over a collection object in the ViewModel
.
The Repeater is the fastest of the databinding controls available to you in asp.net webforms (even by Microsoft's own tests).
精彩评论