asp.net(c#)的货币格式化

1.ToString()方式

string _mm1= 1000.ToString("N"); 
string _mm2= (1000.23).ToString("N"); 
//或者 
string _mm= 1000.ToString("#,###.00"
string _mm2= (1000.23).ToString("#,###.00"

2.页面绑定

<asp:BoundField DataField="Total" DataFormatString="{0:#,###}"  HtmlEncode="False" /> 
原文地址:https://www.cnblogs.com/xiaopin/p/1797919.html