在 ASP.NET 网页中哪里可以设置 CurrentUICulture?
我正在读一个资源,上面写着:
CurrentUICulture 必须在应用程序启动时设置。
对于 ASP.NET 网页,在哪里适当地设置此属性?
I was reading a resource that said:
CurrentUICulture must be set at the startup of a application.
For an ASP.NET web page, where do I set this property appropriately?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在网页中,您可以在页面指令中设置 Culture 和 UICulture:
不必在应用程序启动时设置。
更新:正如 Kristof Claes 在评论中提到的,您可以在
Page_Init
期间在代码中设置它:In a web page, you can set Culture and UICulture in the page directive:
It doesn't have to be set at application startup.
Update: And as Kristof Claes mentions in a comment, you can set it in code during
Page_Init
:网页配置:
Web.config:
您是否尝试过:
请参阅 Page.UICulture 属性< /a> 和 Page.Culture 属性 。
Did you try:
See Page.UICulture Property and Page.Culture Property on MSDN.
我在页面本身上这样做
I do this, on the page itself