Search code examples
asp.netwebmultilingual

ASP.NET User Interface Language selection


friends

I want to add three languages to my ASP.NET website to give users language options.How could I do this.If possible, could you explain it me in details?Thanks...


Solution

  • You can do it by using the Resources.

    And for setting/detecting current language in the views you can use cookies or the routing (which is more preferable due to it's SEO and cache friendly behavior). Here is a tutorial.