Click here to Skip to main content
15,886,063 members
Articles / Web Development / ASP.NET

ASP.NET and Globalization

Rate me:
Please Sign up or sign in to vote.
3.14/5 (11 votes)
21 Jun 2011CPOL2 min read 51.6K   965   42   7
ASP.NET and Globalization

Introduction

Globalization allows your application to be used by people in different parts of the world who speak in different languages.

Resource Files - Heart Of Globalization

ASP.NET uses resource files to make supporting multiple languages simpler. VS 2005 IDE can automatically generate the resource files (.resx) for storing the different languages.

Mainly there are two types of resources:

  • Local: For single pages
  • Global: For all pages

Step 1: Start New Project

From VS 2005 IDE File -> New -> Web Project
Type the project name as GlobalizationSample.

Screenshot - first.jpg

Step 2: Generate the Resource File

Go to the Design View of Default.aspx.
Add one DropDownList and Label control from ToolBox.

Generate the Local Resource File from Tools -> Generate Local Resources.

Screenshot - generate_Local.jpg

It will generate the local resource file under App_LocalResources.

Screenshot - generate_Local_Result.jpg

Open the Default.aspx.resx file.

Update the Label1 text as follows and save the file.

Label1Resource1.Text : Hello

Step 3: Generate the Resource File for Other Language

  1. Copy the Default.aspx.resx file and paste it in App_LocalResources folder.

    Screenshot - copy.jpg

    Screenshot - paste.jpg

  2. Rename the file as Default.aspx.es.resx (es -> indicates the Spanish culture)

    Screenshot - rename.jpg

  3. Open the file and update the label text as follows:
    Label1Resource1.Text : Hola

    Press Ctrl+F5 for running the application.

Here is the normal output:

Screenshot - english_result.jpg

Change the language in IE options Tools -> IE Options -> Languages.

Screenshot - take_language.jpg

Click Add and select the Spanish language.

Screenshot - select_spanish.jpg

Move up the language to top for default settings.

Screenshot - move_up.jpg

Click OK and refresh the page ........ Cooooool :-)))))

Screenshot - spanish_result.jpg

Full Source & Result

Screenshot - final_code.jpg

Screenshot - Final_Result.jpg

Other ASP.NET Tutorials

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Symphony Services, Banglore, 560 087, India

Comments and Discussions

 
QuestionDoubt about article Pin
LakshmiNarayana Nalluri21-Jun-11 19:00
LakshmiNarayana Nalluri21-Jun-11 19:00 
GeneralMy vote of 5 Pin
Zhipeng Li21-Jun-11 16:31
Zhipeng Li21-Jun-11 16:31 
Simple & helpful!
GeneralRe: My vote of 5 Pin
dharmik.c3-Dec-12 20:21
dharmik.c3-Dec-12 20:21 
GeneralMy vote of 3 Pin
demouser74314-Nov-10 22:02
demouser74314-Nov-10 22:02 
GeneralThanks a lot!! Pin
ZentZ8-Jun-08 7:22
ZentZ8-Jun-08 7:22 
GeneralRegarding Globalization asp.net Pin
Shabeer Ibrahim18-Jul-07 3:19
Shabeer Ibrahim18-Jul-07 3:19 
GeneralThanks ! Pin
Vertyg027-Feb-07 8:38
Vertyg027-Feb-07 8:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.