Is there a way to use an else if on the following eval on the aspx page .
Currently my div is as follows :
  <div class="tooltip" style="display: none">                                                                  
        <div style="text-align: center; font-weight: normal">
                Value = <%# Eval("Percentage") + "%" %>     
        </div>
  </div>
I would like to use the following logic on my div :
If(Percentage < 50)
   display "0 %"
   else 
   display "percentage"
I tried something like this but it doesn't work :
if (<%# Eval("Percentage") %> < 50)
{
    Eval("0");
}
else
{
   <%# Eval("PassPercentage") + "%" %> 
 }
I want to know if such an operation is possible to do on the aspx page. I cannot do it in aspx.cs.


