更改语言下拉列表国家代码等

发布于 2024-09-09 07:49:45 字数 135 浏览 2 评论 0原文

我有一个下拉列表,其中包含按字母顺序排列的国家/地区代码和国家/地区名称,现在如何通过下拉列表中的所选项目将每个页面更改为该语言,即时使用与该国家/地区对应的下拉列表中的 RegionInfo TwoLetterISORegionName 对象是正确的方法

I have a dropdownlist with the country codes and country names sorted alphabetically now how do change each page to that language by the selected item in the dropdownlist im using the RegionInfo TwoLetterISORegionName object in the dropdownlist corresponding to that country is that the correct way to do it

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

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

发布评论

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

评论(1

怀念你的温柔 2024-09-16 07:49:45

首先,您需要将所选值保留在某处。

  1. 在 page_init 中检索所选的
    的价值观和设定文化
    当前线程(或使用 Culture
    和页面上的 UICulture 属性
    目的。
  2. 在 page_load 中初始化您的下拉列表。
  3. 在 page_prerender 中您设置
    为下拉列表选择的值。
  4. 在您的事件处理程序中进行处理
    改变价值观
    (selectedindex_changed 或
    按钮_单击)保留所选内容
    下拉列表中的值
    某处。

我还在此处回答了您的其他问题。

First you need to persist the selected value somewhere.

  1. In page_init retrieve the selected
    value and set culture for the
    current thread (or use the Culture
    and UICulture properties on the Page
    object.
  2. In page_load initialise your dropdownlist.
  3. In page_prerender you set the
    selected value for the dropdownlist.
  4. In your eventhandler for handling
    changing values
    (selectedindex_changed or
    button_click) persist the selected
    value from the dropdownlist
    somewhere.

I have also answered you in your other question here.

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