在asp.net中限制小数点后六位小数

时间:2010-03-04 10:00:27

标签: asp.net decimal-point

我有一个双倍,小数位不固定(8 - ?)

我想将小数位数固定为6(例如:1,234567)。

这是我的双重身份:

CStr(score)

我想这很简单:P

3 个答案:

答案 0 :(得分:3)

请改为尝试:

score.ToString("0.000000")

答案 1 :(得分:2)

您还可以Math.Round(3.44, 1) 'Returns 3.4.

Math.Round

答案 2 :(得分:0)

在小数点之后添加零,如此<

Dim tot as String
Dim totAmt as Double
totAmt = 10.10
tot = String.Format(“{0:00.000}”,totAmt)
OutPut:10.100

小数点后删除零点如此<

totAmt = 10.750
TOT = Math.Round(totAmt,2)
输出:10.75

Sloved