本地化母版页

发布于 2024-09-19 11:33:04 字数 103 浏览 4 评论 0原文

我有一个母版页和其中的一些控件,我还有一个包含语言的下拉列表,我想知道是否有方法可以本地化母版页中的所有控件,因为它没有 InitializeCulture 方法。

提前致谢。

I have a MasterPage and some controls in it, I also have a dropdown with languages, I'd like to know if theres is way to localize all of the controls within the masterpage because it doesn't have the InitializeCulture method.

Thanks in advance.

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

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

发布评论

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

评论(1

﹎☆浅夏丿初晴 2024-09-26 11:33:04

我在 global.asax 文件中设置了 Culture,以确保所有请求都从最低级别开始。

protected void Application_AcquireRequestState(object sender, EventArgs e)
{
    CultureInfo culture = new CultureInfo("en-NZ");
    System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
    System.Threading.Thread.CurrentThread.CurrentCulture = culture;
}

所有控件都应通过应用程序获取此信息。

I set the Culture in the global.asax file to ensure that all requests have it from the lowest level.

protected void Application_AcquireRequestState(object sender, EventArgs e)
{
    CultureInfo culture = new CultureInfo("en-NZ");
    System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
    System.Threading.Thread.CurrentThread.CurrentCulture = culture;
}

All controls should pick this up through the application.

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