What would be the best way to render list of many items (like comments that follow articles or blogs) on the web page from a database?
I've noticed in many sites 3 options:
- Table
- list of
<ul>
(ul under ul under ul...) - list of
<divs>
(div under under div...)
And what asp.net control should i use?
Datalist, repeater?