每个项目具有不同文化的中继器

发布于 2024-12-22 00:52:43 字数 224 浏览 1 评论 0原文

我有一个显示定价的中继器控件,应根据特定人员所在的国家/地区显示货币符号。

一般来说,我只会做类似的事情:

<%# DataBinder.Eval(Container.DataItem, "CheapestLesson", "{0:C}")

但是,这将采用当前的页面文化。处理 onItemDataBound 事件时有什么方法可以覆盖区域性吗?

I have a repeater control which displays pricing, the currency symbol should be shown depending on the country of the specific person.

Generally, I'd just do something like:

<%# DataBinder.Eval(Container.DataItem, "CheapestLesson", "{0:C}")

However, this will take the current page culture. Is there any way to override the culture when handling the onItemDataBound event?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然#的苍凉 2024-12-29 00:52:43

如果使用此重载String.Format 的 >:

<%# String.Format(new CultureInfo("en-US"), "{0:C}", DataBinder.Eval(Container.DataItem, "CheapestLesson")) %>

所有 CultureInfo 对象都实现 IFormatProvider 接口,因此如果您使用 String.Format 的此重载代码>您可以覆盖当前的具有特定文化的文化仅适用于此格式。

You can specify a different culture when the string is formatted if you use this overload of String.Format:

<%# String.Format(new CultureInfo("en-US"), "{0:C}", DataBinder.Eval(Container.DataItem, "CheapestLesson")) %>

All CultureInfo objects implement the IFormatProvider interface, so if you use this overload of String.Format you can override the current culture with a specific culture only for this formatting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文