Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to use different languages like french,German in my website.
for this to develop in in asp.net what kind of coding required?
Posted
Updated 29-Sep-13 22:23pm
v2

When you consider the localization of MVC App, you should consider below mentioned scenarios.

1.Views validation

2.Simple culture switching mechanism

3.Model Validation messages localization

4.DisplayName attribute localization

5.OutputCache and Localization

For get more details of above scenarios check :

ASP.NET MVC Localization complete guide

http://adamyan.blogspot.com/2010/02/aspnet-mvc-2-localization-complete.html[^]

Globalization, Internationalization and Localization in ASP.NET MVC

http://www.hanselman.com/blog/GlobalizationInternationalizationAndLocalizationInASPNETMVC3JavaScriptAndJQueryPart1.aspx[^]

I hope this will help to you.
 
Share this answer
 
for this you need to understand the concept of localization or globalization in ASP.NET.
you need to create many resource file for different languages and at runtime depending upon the culture value of the client browser CLR will pick up the different resource file and show the appropriate result on the page.

Please Understand these terms.
Globalization
Localization
Resource File

-SG
 
Share this answer
 
Below article might help you..

ASP.NET 2.0 Globalization & Localization solution[^]
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900