制作多语言网站的最佳方式

Best way to make website for multiple languages(制作多语言网站的最佳方式)
本文介绍了制作多语言网站的最佳方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用(Asp.net, c#) 制作了一个网站,其内容为English.现在我需要以支持多种语言的方式制作这个网站,即(德语,法语).Lable/Textbox/string 所有值将显示各自选择的语言在搜索时我开始知道有一些方法像

I have made a website using(Asp.net, c#) and its content in English. Now i have a requirement to make this website in such a way that is support multiple languages ie (German,French). Lable/Textbox/ string all values will display respective selected languages While searching i came to know there are some ways like

  • 使用本地化
  • 使用资源文件.
  • 数据库(每样东西都保存在不同语言的数据库中).

坦率地说,我不同意第三种选择.

frankly speaking I am not agree with 3rd option.

我想知道哪种方式最好还是有其他更好的方式?

I want to know which is the best way to go or is there any other better way?

注意:当前网站是使用 .NET framework 4.0/vs 2010 构建的.

Note:Current Website was built using .NET framework 4.0/ vs 2010.

谢谢

推荐答案

我使用资源文件添加 global.asax 完成的示例代码

Sample code i have done using resource file add global.asax

 void Application_BeginRequest(Object sender, EventArgs e)
        {
            // Code that runs on application startup
            HttpCookie cookie = HttpContext.Current.Request.Cookies["CultureInfo"];
            if (cookie != null && cookie.Value != null)
            {
                System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(cookie.Value);
                System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(cookie.Value);
            }
            else
            {
                System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en");
                System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en");
            }
        }

这篇关于制作多语言网站的最佳方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)