现在要做个下拉列表,需要显示语言栏,也就是所有系统所带的语言选项,比如中文(简体)、中文(港澳)、中文(台湾)、中文(新加坡).......等等
请给出具体的思路和方法。谢谢!!

解决方案 »

  1.   

    分页配置资源文件或用全局文件,两种方式否可以
    void Application_BeginRequest(Object sender, EventArgs e) 
      { 
      try 
      { 
      if (Request.Cookies["lang"] != null) 
      { 
      System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(Request.Cookies["lang"].Value.ToString()); 
      System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(Request.Cookies["lang"].Value.ToString()); 
      } 
      } 
      catch (Exception) 
      { } 
      } 支持多语言
    参考
    参考