ankur
ankur

Reputation: 127

How to display Posts in a Forum Web application using ASP .net C#

I am developing a Forum Web Application using ASP .Net 3.5

I am facing issues in displaying Posts and replies under a selected question. What display control shall I use in order to display the replies in separate boxes with comment date and user id in them ? (taking into account that Gridview is a Big NO)

Upvotes: 1

Views: 1120

Answers (2)

all2neat
all2neat

Reputation: 125

How about using a repeater and making your own html inside of it. It will be the most efficient way to get exactly the output you are looking for.

This link should get you started. http://www.asp101.com/articles/john/repeater/default.asp

Upvotes: 0

Kon
Kon

Reputation: 27451

I vote for ListView, seeing as how you want to display a list of replies.

Upvotes: 1

Related Questions