How to implement Questions and Answers forums in asp.net
-
Hi All I need to implement Questions and Answers forums in my website. it should be just like our CodeProject.com. it should maintain hearachy of replies. can anybody tell me how to imlement this in asp.net please help me. thanks.
-
Hi All I need to implement Questions and Answers forums in my website. it should be just like our CodeProject.com. it should maintain hearachy of replies. can anybody tell me how to imlement this in asp.net please help me. thanks.
Write the code. I don't see what else I can tell you. You need a database to store the values, and you need to write code to display them. If you want a heirarchy, you need to store the id of the post you responded to and write code to thread the replies as you display them.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Write the code. I don't see what else I can tell you. You need a database to store the values, and you need to write code to display them. If you want a heirarchy, you need to store the id of the post you responded to and write code to thread the replies as you display them.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
thanks Christian Graus . can you tell me thta how can I maintain on interface. I mean what control i should use for this so that I can get hearachy should I use nested gridview or some other control also help. thanks.