Reputation: 127
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
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