Frage

I am getting the number of comments value from the Item Statistics field's numberOfComments, But its return total number of comments.

Could any one please help me, how can i find only moderated number of comments in UGC?

War es hilfreich?

Lösung

AFAIK currently there is no way to find it directly but you may allow only moderated comments and then count them like

   <ugc:ForEachComment runat="server">
    <% HttpContext.Current.Items["Count"] = Convert.ToInt32(HttpContext.Current.Items["Count"]) + 1; %>
            </ugc:ForEachComment>

Hope it will help you.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top