Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在格式化这样的字符串'212,121'。它与本地机器中的以下代码完美配合。但它在服务器上不起作用。请帮我解决这个错误...
这是我的格式:
<%#Eval("balance","{0:###,###,0}") %>
它在本地而不是在服务器中工作正常......
检查两者的区域设置是否相同。
你试过这样的事情吗?(注意:未经测试的代码)
<%#String.Format(CultureInfo.InvariantCulture, "{0:###,###,0}", DataBinder.Eval(Container.DataItem, "balance").ToString)%>