Search code examples
tridiontridion-2011ugc

UGC conditional statement is not working


I am using UGC feature of Tridion 2011. I have done almost but stuck in one place. actually, i have to display one text when user have entered comments, it will display if comments are greater then 0. i am using for this condition but it does not go in the condition.

<ugc:ItemStats  ItemURI="@PhysicalUri" runat="server">
<ugc:Choose runat="server">
  <ugc:When test=" ugcItemStats.numberOfComments equals  0 " runat="server">
       html1
  </ugc:When>
  <ugc:Otherwise runat="server"> 
       html2
  </ugc:Otherwise> 
</ugc:Choose>
</ugc:ItemStats> 

Could any one please help me to resolve his issue


Solution

  • Use this code, i hope will be work.

    <%
    HttpContext.Current.Item["variable"] = 0;
    %>
    
    <ugc:ItemStats  ItemURI="@PhysicalUri" runat="server">
    <ugc:Choose runat="server">
      <ugc:When test="ugcItemStats.numberOfComments equals  variable " runat="server">
           html1
      </ugc:When>
      <ugc:Otherwise runat="server"> 
           html2
      </ugc:Otherwise> 
    </ugc:Choose>
    </ugc:ItemStats>