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?
+1
A:
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
.
Robert Harvey
2010-07-02 03:06:32
+1
A:
The Repeater is the fastest of the databinding controls available to you in asp.net webforms (even by Microsoft's own tests).
Tahbaza
2010-07-02 03:07:04