I am using C# asp.net. I want to implement a commenting system which is similar to facebook commenting system look & feel. Please give your inputs.
Share
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.
When it comes to storing,retrieving and displaying comments yes asp.net controls come into use.
Other things being done, to accept a comment and display existing ones for that object (may be post) I would do:
1:
Retrieve the comments for that object from database. (easiest wayis to use SqlDataSource and set Select, Insert and Delete commands)
2:
Use ListView control to display the retrieved data. Remember ListView should be customized to fit you needOther databound controls are also usable. With these rich controls this task should be easy. Play with the templates these controls offer you and you can achieve almost any database related task.
Design and styling are sufficiently supported and still CSS + can be easily integrated.