Reputation: 101
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?
Upvotes: 1
Views: 498
Reputation: 9548
The Repeater is the fastest of the databinding controls available to you in asp.net webforms (even by Microsoft's own tests).
Upvotes: 1
Reputation: 180798
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
.
Upvotes: 1