分享你我的心得.
共乘一片美好网络.

金额数字用逗号三位三位隔开并显示两位小数

20140219093635

第一种

<%
Response.Write getMoney(“12345.67”)

Function getMoney(s)
On Error Resume Next
If Not IsNumeric(s) Then s = 0
getMoney = FormatNumber(CDbl(s), 2, -1, 0, -1)
End Function
%>

第二种

<%

a= 123456789
response.write FormatNumber(a,0,-1,0,-1)

%>

 

 

赞(0)
未经允许不得转载:小叶白龙博客 » 金额数字用逗号三位三位隔开并显示两位小数
分享到: 更多 (0)

评论 抢沙发

评论前必须登录!