日期:2014-05-17 浏览次数:20730 次
DataTable comment_dt=getComment.GetComment(topicID);
StringBuilder com_str =new StringBuilder();
foreach(var comAll in comment_dt){//遍历所有评论内容,拼接起来
com_str.Append(comAll.Nickname);
com_str.Append("@");
com_str.Append(comAll.Msg);
com_str.Append ("#");
com_str.Append(comAll.Greattime);