What is the Best Solution for Multilingual Web Site ?

Last post 11-05-2009 10:57 AM by TATWORTH. 4 replies.

Sort Posts:

  • What is the Best Solution for Multilingual Web Site ?

    11-04-2009, 3:02 AM
    • Member
      2 point Member
    • Gopi_Mtp
    • Member since 08-20-2009, 9:22 AM
    • Posts 4

    Hi All,

    We are developing a call centre web application. The client now requesting it in a multilingual application. But we are using the resource file concept (.Resources) for storing the Key and value (english key, and respective language text). That is while opening of each form we will iterate all the control and change its texts into the respective multilingual text reading from the resource file generated by us.

    But my doubt is , whether is this the right method to develop a Multilingual Web Site ? or any other way to achieve the same...

    I heard, the with the use of Satelitte assemblies, we can develop multilingual applications, but i have no idea about that.

    Any help would be appreciated.

    Thanks in Advance.

    With Best Regards,

    Gopi. V

    Filed under:
  • Re: What is the Best Solution for Multilingual Web Site ?

    11-04-2009, 3:14 AM
    • Star
      10,720 point Star
    • chintanpshah
    • Member since 11-19-2008, 5:39 AM
    • Ahmedabad
    • Posts 1,905

    You do not need to iterate through all controls and set its text using code. You just write text as:

    For utilizing Local Resource File (one that is in App_LocalResources folder):

    <asp:Localize ID="locTest" runat="server" Text="<%$Resources:Test %>"></asp:Localize>

    For utilizing Global Resource File (one that is in App_GlobalResources folder):

    <asp:Localize ID="locTest" runat="server" Text="<%$Resources:Common,Test %>"></asp:Localize>

    Where Common is name of your Global Resource file.


    Hope this helps...

    Don't forget to mark as answer, if it helps
  • Re: What is the Best Solution for Multilingual Web Site ?

    11-04-2009, 3:18 AM
    • Star
      10,720 point Star
    • chintanpshah
    • Member since 11-19-2008, 5:39 AM
    • Ahmedabad
    • Posts 1,905

    For more information, Refer to:

    http://msdn.microsoft.com/en-us/library/c6zyy3s9.aspx

    http://msdn.microsoft.com/en-us/library/aa478974.aspx


    Hope this helps...

    Don't forget to mark as answer, if it helps
  • Re: What is the Best Solution for Multilingual Web Site ?

    11-04-2009, 4:07 AM
    • Member
      2 point Member
    • Gopi_Mtp
    • Member since 08-20-2009, 9:22 AM
    • Posts 4

    Hi... I forget to mention one important thing. We are using .Net 1.1 for our development.

    Your comments will be valid if we using above .net framework 2.0.

    Anyhow thanks for you quick response.

    Best Regards,

    Gopi V

     

  • Re: What is the Best Solution for Multilingual Web Site ?

    11-05-2009, 10:57 AM
    Answer
    • All-Star
      63,000 point All-Star
    • TATWORTH
    • Member since 02-04-2003, 8:34 AM
    • England
    • Posts 12,308
    • TrustedFriends-MVPs

    Why are you still using 1.1? Why can't you update to 2.0/3.0/3.5?

    I suggest that you get a copy of DotNet Internationalisation see:

    Also go to his web site www.guysmithferrier.com

    Also his presentation http://www.guysmithferrier.com/downloads/teni18n.pdf

    The book is available online at Safari books at http://safari.oreilly.com/0321341384

    Don't forget to click "Mark as Answer" on the post that helped you.
    This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
Page 1 of 1 (5 items)