Platform: C# ASP.NET 3.5
I have a ListView which builds a Rate field which is decimal, if I simply have <% #Eval(\"Rate\") %> it shows 4.5000 rather t
<% #Eval(\"Rate\") %>
Did you try this :
<% #Eval("Rate","{0:F2}") %>