开发者

Currency formatting language?

开发者 https://www.devze.com 2023-04-07 18:09 出处:网络
I am using a GridView and I need to show the currency in Arabic culture so I used this code which is working very well,

I am using a GridView and I need to show the currency in Arabic culture so I used this code which is working very well,

DataFormatString="{0:c}"

Th开发者_如何学JAVAe results will be like this : د.ك.‏ 55.000 Now what I want is to change it like this : 55.000 K.D ???


Have you tried DataFormatString = "{0:0.000} K.D."?

As shown in this example.

0

精彩评论

暂无评论...
验证码 换一张
取 消