0

我在我的数据网格中使用以下格式。我的本地机器给了我想要的结果:

105,000.42

但在服务器上,它给了我:

1,05,000.42

请帮我解决这个错误。

这是我的部分代码:

<asp:Label ID="lblibilling" runat="server" 
     Text='<%#Bind( CultureInfo.InvariantCulture,"pbilling","{0:0,0.00}") %>' >
</asp:Label> 

我无法修复此错误。请帮我解决它...

4

1 回答 1

0

尝试以下操作:

<asp:Label ID="lblibilling" runat="server" 
    Text='<%#Bind( CultureInfo.InvariantCulture,"pbilling","{0:#,0,,.00}") %>' >
</asp:Label>

我从我做的一个项目中复制了它

于 2012-06-02T14:45:55.003 回答