Hello everyone,
I am playing around with webforms and, I guess, trying to create some sort of reddit clone using
ASP.NET 4.5, C#, WebForms and SQL Server. I am quite content with what I've got so far (mind you, this took me only about 2 weeks to implement along side studying), and I have come to the point where I need some community tips to move on.
Plain and simple: I need threaded commenting system. Currently, users can write comments on link or message submissions and vote these comments up or down.
This, however, completelly ruins the usability aspect of the application because
comments are not threaded and they are sorted by the amount of votes. Replying to comments is also not usable because, once again, of the lack of threading.
When it comes to SQL, submissions (links or messages) are kept in their own table. Comments on these submissions are kept in a comment tab ...
Go to the complete details ...