如何改变文化?

发布于 2024-08-09 11:53:33 字数 318 浏览 3 评论 0 原文

抱歉我的英语很差...

我正在使用asp.net control toolkit在asp.net mvc上做一个日历,它工作得很好!但它是英文格式的日期。我如何更改为 pt-BR 文化?我阅读了很多网站,但无法在我的项目中实施。

任何人都可以添加一个链接来向我展示有关文化的有效实施吗?

为什么在 webconfig 文件中 system.web 标记之间放置 不起作用?

谢谢

Sorry my very poor english ...

I'm using asp.net control toolkit to do a calendar on asp.net mvc, and it works fine! But it is in english format date. How can i change to pt-BR culture? I read lot of sites, but i couldn't implement on my project.

Anyone could put a link to show me a valid implementation about culture?

And why putting: <globalization culture="pt-BR" uiCulture="pt"/> in webconfig file between system.web tags doesn't work?

Thanks

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

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

发布评论

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

评论(1

梦里兽 2024-08-16 11:53:33

简单的选择是更改浏览器语言;因为它应该将其作为本地文化来使用(在 Internet Explorer 中,这是:工具 > Internet 选项 > 外观下方有语言)

或者看看这样做:

var culture = new System.Globalization.CultureInfo("pt-BR");
System.Threading.Thread.CurrentThread.CurrentUICulture = culture

强制您的应用程序返回这种文化。

Easy option would be to change you browsers language; as it should then pick up this as the native culture to use (in internet explorer this is: tools > internet options > below appearance there is language)

Alternatively look at doing:

var culture = new System.Globalization.CultureInfo("pt-BR");
System.Threading.Thread.CurrentThread.CurrentUICulture = culture

To force your application to return in this culture.

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