更改语言下拉列表国家代码等
我有一个下拉列表,其中包含按字母顺序排列的国家/地区代码和国家/地区名称,现在如何通过下拉列表中的所选项目将每个页面更改为该语言,即时使用与该国家/地区对应的下拉列表中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要将所选值保留在某处。
的价值观和设定文化
当前线程(或使用 Culture
和页面上的 UICulture 属性
目的。
为下拉列表选择的值。
改变价值观
(selectedindex_changed 或
按钮_单击)保留所选内容
下拉列表中的值
某处。
我还在此处回答了您的其他问题。
First you need to persist the selected value somewhere.
value and set culture for the
current thread (or use the Culture
and UICulture properties on the Page
object.
selected value for the dropdownlist.
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.