根据国家/地区选择更改货币格式
我有一个所有国家/地区的下拉列表。我希望能够根据用户选择的国家/地区以货币格式显示一定金额。 目前我只是使用 amount.ToString("C")
并且它只显示美元符号。但是用户选择了欧洲国家,那么它应该能够以欧元格式显示什么呢? 有没有办法在 c# 中的 dropdownlist selectedindexchanged 事件上实现此目的?
非常感谢您的帮助。 谢谢。
I have a dropdownlist of all countries. I want to be able to display a certain amount in currency format based on the country selected by user.
Currently I'm just using amount.ToString("C")
and it just displays the dollar sign. But what the user selects a european country then it should be able to display in Euro format?
Is there any way to achieve this in c# on the dropdownlist selectedindexchanged event perhaps?
Help would be much appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
改编自针对特定区域性设置数字数据格式:
Adapted from Formatting Numeric Data for a Specific Culture: