ASP.NET Countries List和DropDownlist更改语言代码

时间:2010-07-14 00:49:54

标签: c# .net-2.0 asp.net-2.0

我希望有一个类似此更改的链接(en-NZ),显示我正在使用的语言,该页面将带我到另一个页面,其中包含国家/地区的下拉列表及其语言代码,我可以从中选择已经选择了我当前语言的dropdownlist并为我的所有页面更改了它,是否有任何示例代码实现了这一点?

1 个答案:

答案 0 :(得分:1)

来自Enterprise Localization Toolkit

<%@ Page language="C#" Inherits="Microsoft.Toolkits.EnterpriseLocalization.LocalizedPage" 
            trace="false" EnableViewState="true" %>
<%@ Import namespace="Microsoft.Toolkits.EnterpriseLocalization" %>

<script language="C#" runat="server">
void CountryChanged(object src, EventArgs evt)
{
   myLabel.Text = String.Format("Selected {0} with value of {1}", 
            countryDropDown.SelectedIndex, 
               countryDropDown.SelectedItem.Value);
   stateDropDown.Attributes[Settings.KeyName] = 
            countryDropDown.SelectedItem.Value;
   Reload(stateDropDown);
}   
</script>

<html>
<body>
<form runat="server">
   <asp:Label key="ApplicationTitle" runat="server" 
            EnableViewState="false" /><br>
   <asp:DropDownList id="countryDropDown" runat="server" 
      key="CountryList" 
      OnSelectedIndexChanged="CountryChanged" 
      AutoPostBack="true" >
   </asp:DropDownList>
   <asp:DropDownList id="stateDropDown"  key="none" runat="server" />
   <br>
   <asp:Label id="myLabel" runat="server" /><br>
   <a href="Test.aspx">Refresh</a>
</form>
</body>
</html>