Format string by CultureInfo

后端 未结 5 1085
面向向阳花
面向向阳花 2020-12-03 00:30

I want to show pound sign and the format 0.00 i.e £45.00, £4.10 . I am using the following statement:

<%# Convert.To         


        
5条回答
  •  醉梦人生
    2020-12-03 01:22

    Try specify exact currency format

    String.Format(...CultureInfo("en-GB"), "{0:C}"....
    

提交回复
热议问题