本文介绍了asp.net中的评论树的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在建立一个基于评论的项目,其中用户发表评论和其他人可以回复他/她的评论。

我想以嵌套的形式显示评论。例如:



1)评论A

2)回复评论no 1

3)回复tocomment no。 2





4)回复评论no 1

5)回复tocomment no。 5



就像明智一样。



我有一个数据库tablble tbl_comment有列



CommentID,CommentText,日期,时间,ParentID



其中parentID是回复的commentID。

我在检索注释的树视图时遇到问题

解决方案



I am building a comment based project, in which the user post comments and other can reply his/her comments.
I want to show the comments in nested form.For example:

1)Comment A
2)Reply TO Comment no 1
3)Reply tocomment no. 2


4)Reply to comment no 1
5) Reply tocomment no. 5

like wise.

I have a database tablble tbl_comment having columns

CommentID, CommentText, Date, time, ParentID

where parentID is the commentID for which the reply is made.
I having trouble in retrieving the tree view of comments

解决方案



这篇关于asp.net中的评论树的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 15:53