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.
我有这行代码:
<%# Eval( "Balance", "{0:C}" )%>
无论他们设置了什么语言环境,我如何始终强制它以 en-US 显示货币?
尝试这个:
<%# String.Format( new System.Globalization.CultureInfo("en-US"), "{0:C}", Eval("Balance") %>
您还可以为整个页面或整个应用程序设置文化,如此处所述。