force a string to 2 decimal places

后端 未结 5 1765
广开言路
广开言路 2020-12-17 09:19

i have a repeater item that displays a double. occasionally the double seems to be coming out with 3 decimal places like this 1165.833. im trying to force it to two decimal

5条回答
  •  执笔经年
    2020-12-17 10:22

    Try not calling ToString() on the output of the Eval method - you can't format a string with number formatting strings.

提交回复
热议问题