Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Item Statistics フィールドの numberOfComments からコメント値の数を取得していますが、コメントの総数が返されます。
どなたか助けてください。UGC でモデレートされた数のコメントのみを見つけるにはどうすればよいですか?
私の知る限り、現在それを直接見つける方法はありませんが、モデレートされたコメントのみを許可して、次のようにカウントすることができます
<ugc:ForEachComment runat="server"> <% HttpContext.Current.Items["Count"] = Convert.ToInt32(HttpContext.Current.Items["Count"]) + 1; %> </ugc:ForEachComment>
それがあなたを助けることを願っています。