Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6819681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:20:07+00:00 2026-05-26T21:20:07+00:00

I can do the multilingual website in asp.net when language is similar ( dir=ltr

  • 0

I can do the multilingual website in asp.net when language is similar ( dir=ltr for example English, Spanish, French). I would like to know how to do the same when one language dir=ltr (English) and other language dir=rtl (Arabic).

I would appreciate if some one can link to a resource which can show how to do this step by step as along with themes one for English and other for Arabic..

I am using ASP.Net 4.0 .

I would appreciate any help in this area and if someone can provide me with a two page example that would be great.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T21:20:08+00:00Added an answer on May 26, 2026 at 9:20 pm

    you can try like this …

    It is easy to develop multi language supported web site using ASP.NET . Just follw that step by step.

    • 1.Take a new web site
    • 2.Add “App_GlobalResources” from ASP.NET folders
    • 3.Take a *.resx file (Strings.resx)
    • 4.Enter Name and values
    • 5.Make different *.resx file for different languages and name like that Strings.en-US.resx (for US english), Strings.fr-FR.resx (for
      French). Make as many language file you needed
    • 6.Now time for calling and using language from web page You website Solution Explorer will look like below image…

    enter image description here

    Default.aspx file will look like that

    <asp:Label ID=”lblName” runat=”server” Text=”Label”></asp:Label>
    <asp:Label ID=”lblDesc” runat=”server” Text=”Label”></asp:Label>
    <asp:Label ID=”lblComments” runat=”server” Text=”Label”></asp:Label>
    <asp:LinkButton ID=”lnkEnglish” runat=”server” OnClick=”lnkEnglish_Click”>English</asp:LinkButton>
    <asp:LinkButton ID=”lnkFrench” runat=”server” OnClick=”lnkFrench_Click”>French</asp:LinkButton>
    

    Codes of Default.aspx.cs

    private ResourceManager rm;
    protected void Page_Load(object sender, EventArgs e)
    {
       CultureInfo ci;
       if (!IsPostBack)
       {
           Thread.CurrentThread.CurrentCulture = new CultureInfo(“en-US”);
           rm = new ResourceManager(“Resources.Strings”, Assembly.Load(“App_GlobalResources”));
           ci = Thread.CurrentThread.CurrentCulture;LoadData(ci);
      }
      else
      {
          rm = new ResourceManager(“Resources.Strings”,Assembly.Load(“App_GlobalResources”));
          ci = Thread.CurrentThread.CurrentCulture;LoadData(ci);
      }
    }
    protected void lnkEnglish_Click(object sender, EventArgs e)
    {
        Thread.CurrentThread.CurrentCulture = new CultureInfo(“en-US”);
        LoadData(Thread.CurrentThread.CurrentCulture);
    }
    protected void lnkFrench_Click(object sender, EventArgs e)
    {
        Thread.CurrentThread.CurrentCulture = new CultureInfo(“fr-FR”);
        LoadData(Thread.CurrentThread.CurrentCulture);
    }
    public void LoadData(CultureInfo ci)
    {
       lblName.Text = rm.GetString(“EventName”, ci);
       lblDesc.Text = rm.GetString(“EventDescription”, ci);
       lblComments.Text = rm.GetString(“EventComments”,ci);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am implementing an multilingual web site using ASP.Net. The languages are English,French and
I want to make my joomla website(virtuemart -ecommerce) multilingual. User can choose the language
I want to make my joomla website(virtuemart -ecommerce) multilingual. User can choose the language
can you recommend some good ASP.NET tutorials or a good book? Should I jump
How can I make a website multilingual? I want to create a website and
When building a multi-lingual website (with ASP.NET web forms), I'll use an HTTP module
I'm building a multilingual website that uses PHP to load language files. Paragraphs in
I have a multilingual website with the possibility to switch between German and English.
I have a multilingual ASP.NET site; one of the languages is Arabic (ar-SA). To
We have to build an event registration website for our client in ASP.NET using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.