Multilingual Web Site in .Net - A Tutorial

This is a Web Solution designed to teach all newcomers into the .Net field on how to incorporate Multi-language support into your Web Applications. You have to download the accompaning ZIP file.

          This tutorial will teach you

  • How to create the Resource files for various languages.
  • How to access the Resource file data from the web pages.
  • How to store Unicode (multilingual) data into the database.
  • How to access multilingual data from the database.

Source: Developersdex

 

2 Comments

  • The articles is ok.

    It covers what can be found in the documentation, but in one place.



    Most of the sites I have worked on have been multilingual.



    If you are regularly involved in sites that are multilingual, you quickly realize that have a ton of :

    literalControl.Text = resourceManager.GetString("idFromResx")

    validatorControl.Text = resourceManager.GetString("InPlaceError")

    validatorControl.ErrorMessage= resourceManager.GetString("SummaryError")



    I'm working on the problem, generating controls from all WebControls and HtmlControls.

    Creating one that have Localizable properties so you can just select an item from the resx and so you see (and update) the localized value at design time.











  • Thanks Andrew. Let us know when you have something to show !

Comments have been disabled for this content.