I’m just wondering what’s the best way to implement a threaded conversation like the Facebook Wall where the comments are displayed under each post, and older comments are collapsed and expandable. My instinct is to use a nested datalist, but I think that might take a toll on performance.
I’m just wondering what’s the best way to implement a threaded conversation like the
Share
I would look into using ASP .NET MVC instead of webforms. I would load the first few posts server side with the initial page load and then look at implementing a client-side solution using AJAX with jQuery to retrieve additional records – there is an example of that here.