DataBinding Eval To 2 Decimal Place Doesn't Show 0

后端 未结 5 2102
旧时难觅i
旧时难觅i 2021-02-05 12:52

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

5条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-05 13:32

    At server side Convert Decimal 2 place into 1 place. (Decimal Value).ToString("0.0");

提交回复
热议问题