I need to build a web page that has categorized data that looks like the screenshot below. Initially, I thought of using a Repeater or a DataList but I am not sure. Which ASP.NET control do you suggest? I am working on ASP.NET 4.0

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a ListView. It will give you the functionality you need with the added benefit of clean markup using the templates.
http://weblogs.asp.net/scottgu/archive/2007/08/10/the-asp-listview-control-part-1-building-a-product-listing-page-with-clean-css-ui.aspx
Use nesting in the templates “if you really have to”. Avoid nesting top-level controls like the ListView – totally unnecessary and a performance killer.